// JavaScript Document

function Show_Hide(couponid){
	if(document.getElementById('div_'+couponid).style.display=='none'){
		document.getElementById('div_'+couponid).style.display='block';
	}else if(document.getElementById('div_'+couponid).style.display=='block'){
		document.getElementById('div_'+couponid).style.display='none';
	}
}
function fetch_storecoupons()
{
	var store_id=document.getElementById('store_id').value;
	var offertype_id=document.getElementById('offertype_id').value;
	if(category_id!='' && category_id!='0'){
			//alert("1");
		if(store_id!='' && store_id!='0'){
			//alert("2");
			if(offertype_id!='' && offertype_id!='0'){
				var url ='index.php?action=couponsandspecials&category_id='+category_id+'&store_id='+store_id+'&offertype_id='+offertype_id;
				//alert("3");
			}else{
				//	alert("4");
					var url ='index.php?action=couponsandspecials&category_id='+category_id+'&store_id='+store_id;
				}
			}else if (offertype_id!='' && offertype_id!='0'){
						//	alert("5");
				var url ='index.php?action=couponsandspecials&category_id='+category_id+'&offertype_id='+offertype_id;	
			}
		}else{
			if(store_id!='' && store_id!='0'){
				//alert("6");
				if(offertype_id!='' && offertype_id!=0){
					var url ='index.php?action=couponsandspecials&store_id='+store_id+'&offertype_id='+offertype_id;
					//alert("7");
				}else{
						//alert("8");
						var url ='index.php?action=couponsandspecials&store_id='+store_id;
					}
				}else if (offertype_id!='' && offertype_id!='0'){
							//	alert("9");
					var url ='index.php?action=couponsandspecials&offertype_id='+offertype_id;	
				}
		}
		objAjaxHandler.setTarget('Show_Coupons');
		objAjaxHandler.sendRequest(url);

	return true;
}
function Show_Coupons(responseText)
{
	var response = unescape(responseText);
	document.getElementById('div_deals').innerHTML='';
	document.getElementById('div_deals').innerHTML=response;
}
/*
	

		*/
