/*  Project Name		: pamperyourdog
   	Program name		: dis_coupen.js
 	Program function	: Javascript page for Discount coupon.
	Author				: Ullas Augustine
	Developed by	   	: BishopWebWorks, Inc.  - www.bishopwebworks.com 
 	Created Date  		: 29 Nov, 2007
 	
	Update History
    -------------------------------------------------------------------
        Date       		By 					short desc. of what updated 
 	---------------------------------------------------------------------*/	
function validate_rev(theform){return true;
	if(theform.frm_coupon_id.value ==""){//return true
		alert("Please enter Coupon Code.");
		theform.frm_coupon_id.focus();
		return false;
	}
	return true;
}
function CanceFunct(){
document.getElementById("prod_dis").innerHTML = '';
}
function Discount(){
	
	
	var cont = '<table border="0" cellpadding="0" cellspacing="0" bgcolor="#fd007e" width="90%"><tr><td bgcolor="#fff2f9"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td height="8" align="left"  colspan="2"></td></tr><tr><td align="center" class="style13"  colspan="2">&nbsp;&nbsp;Please enter your Discount Coupon id here</td></tr>';
			cont +='<tr><td colspan="2" height="5">&nbsp;</td></tr>';
			cont +='<tr><td align="right" class="style6" width="40%" valign="top">&nbsp;&nbsp;Discount Id&nbsp;:&nbsp;</td><td width="60%" align="left" valign="top"><input type="Text" size="15" name="frm_id" value=""></td></tr>';
			cont +='<tr><td align="right" height="5" colspan="2"></td></tr>';
			cont +='<tr><td align="right" valign="bottom" width="50%">&nbsp;</td><td align="left" valign="bottom" width="50%">&nbsp;<input type="Button" name="btn_cancel" class="text" value="Cancel" onclick="CanceFunct()" ></td></tr>';
			cont +='<tr><td height="8" align="left" colspan="3">&nbsp;</td></tr></table></td></tr></table>';
	document.getElementById("prod_dis").innerHTML = cont;
	
} 