<!--
function validate1()
		{
		
						
if(document.f1.from.value=="")
	{
	alert("Please enter Email Address");
	document.f1.from.focus();
	return false;
	}
		var str,strDomain, arTemp
		arTemp= new Array()
		str= new String()
		str= document.f1.from.value
		arTemp= str.split("@")
		if(  (arTemp.length<2 || arTemp.length >2) || (arTemp[0]=="" ||(arTemp[1])=="") )
		{
		 alert('enter proper e-mail address')
		 document.f1.from.focus()
		 return false;

		}
		else
		{
		  strDomain= new String(arTemp[1])
		  arTemp= strDomain.split(".")

		  if(arTemp.length <2 || arTemp[0]=="" || arTemp[1]=="" )
		  {
	        alert('enter proper e-mail address')
		   document.f1.from.focus()
		   return false;
		  }
    	            }


      	cstate=document.f1.state.value;
			
			if ( cstate=="")
				{
					alert("Please Enter the state.");
					//flag=false;
					document.f1.state.focus();
					return false;
				}
        
		ccountry=document.f1.country.value;
			
			if ( ccountry=="")
				{
					alert("Please Enter the country.");
					//flag=false;
					document.f1.country.focus();
					return false;
				}

			
				document.f1.method="post";			
		document.f1.action="sendoffermail.asp";
		document.f1.submit();
  }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
