////Alert for form filling
	function load()
	 {
	  contactus.firstname.focus()
	 }//----end of function load
	function checktest()
	  {
	     if(window.document.contactus.firstname.value=="")
	      {
	     	alert("Please Enter Your Name");
	     	window.document.contactus.firstname.focus();
	     	return false;
	      }
	     if(window.document.contactus.email.value=="")
	      {
	     	alert("Please Enter Your EMail Address");
	     	window.document.contactus.email.focus();
	     	return false;
	      }
	     if(document.contactus.email.value.indexOf(" ") >= 0)
	      {
		alert("Check Your EMail Id");
		document.contactus.email.focus();
		return (false);
	      }
	     if ( (document.contactus.email.value.indexOf("@") == -1)||(document.contactus.email.value.indexOf(".") == -1) )
		{
		  alert("Check Your EMail Id"); 
		  document.contactus.email.focus();
		  return (false);
		}
	     BeforeAtRate = document.contactus.email.value.substring(0,document.contactus.email.value.indexOf("@"));
	     AfterAtRate = document.contactus.email.value.substring(document.contactus.email.value.indexOf("@")+1,document.contactus.email.value.length);
		
	     if (AfterAtRate.indexOf(".") == -1)
		{
		  alert("Check Your EMail Id"); 
		  document.contactus.email.focus();
		  return (false);
		}
	     middle = AfterAtRate.substring(0, AfterAtRate.indexOf("."))
	     last = AfterAtRate.substring(AfterAtRate.indexOf(".") + 1,AfterAtRate.length)

            if (BeforeAtRate.length == 0 || middle.length == 0 || last.length == 0)
	     {
	    	alert("Check Your EMail Id"); 
		document.contactus.email.focus();
	        return (false);
	     }
	    if(window.document.contactus.address.value=="")
	     {
	     	alert("Please Enter Your Address");
	     	window.document.contactus.address.focus();
	     	return false;
	     }
	    if(window.document.contactus.city.value=="")
	     {
	     	alert("Please Enter Your City");
	     	window.document.contactus.city.focus();
	     	return false;
	     }

	    if(window.document.contactus.country.options[0].selected)
	     {
		alert("Please Enter Your Country");
		window.document.contactus.country.focus()
		return false;
	     }

	     if(isNaN(document.contactus.zip.value))
	      {  
		alert("Zip/Postal Code should be Numeric");
   	 	document.contactus.zip.focus()
		return false; 
	      }
	     if(window.document.contactus.phone_number.value=="")
	      {
	     	alert("Please Enter Your Phone Number");
	     	window.document.contactus.phone_number.focus();
	     	return false;
	      }

		}//end of function checktest