function  validatesubmit1()
{
	
		if(parseInt(document.frmproduct.Total.value)==0)
	{
		alert('Please select some services');
		document.frmproduct.C1.focus();
	}
	if(parseInt(document.frmproduct.Total.value)<501)
	{
		alert('Please select minimum service for 501/-');
		document.frmproduct.C1.focus();
	}
	else if(!document.frmproduct.chkAgreement.checked)
	{
		alert('Please agree the terms and conditions');
		document.frmproduct.chkAgreement.focus();
	}
		var  frm=document.frmproduct;
		
		    if(!isValidEntry(frm.f_name, "enter first name"))
			return false;
			if(!isValidEntry(frm.l_name, "enter last Name"))
			return false;
			if(!isValidEntry(frm.address_1, "enter  address"))
			return false;
			if(!isValidEntry(frm.address_2, "enter  address2"))
			return false;
			if(!isValidEntry(frm.city, "enter city Name"))
			return false;
			if(!isValidEntry(frm.pincode, "enter pincode"))
			return false;
			if(!isValidEntry(frm.state, "enter state name"))
			return false;
			if(!isValidSelect(frm.country,'Country'))
			return false;
			if(!isValidEntry(frm.telephone, "enter telephone number"))
			return false;
			if(!isValidEntry(frm.email, "enter email"))
			return false;
			//frm.kw.value="submit1";
						
			frm.action = "http://secure.iskconhyderabad.com/HostedPaymentDetail.asp" 
		
}
