function Verify()
 {
 		if(Trim(document.frmContact.txt_fname.value)=='')
		{
			alert("Please enter the First Name");
			document.frmContact.txt_fname.focus();
			return false;
		}
		if(!isAlphabetic(Trim(document.frmContact.txt_fname.value)))
		{
			 alert("please enter only alphabetic value for First Name");
			 document.frmContact.txt_fname.select();
			 document.frmContact.txt_fname.focus();
			 return false;
		 }	
		if(Trim(document.frmContact.txt_lname.value)=='')
		{
			alert("Please enter the Last Name");
			document.frmContact.txt_lname.focus();
			return false;
		}
		if(!isAlphabetic(Trim(document.frmContact.txt_lname.value)))
		{
			 alert("please enter only alphabetic value for Last Name");
			 document.frmContact.txt_lname.select();
			 document.frmContact.txt_lname.focus();
			 return false;
		 }	
		 if(Trim(document.frmContact.txt_company.value)=='')
		{
			alert("Please enter the Company Name");
			document.frmContact.txt_company.focus();
			return false;
		}
		if(document.frmContact.chk_pt.checked == false && document.frmContact.chk_vcm.checked == false && document.frmContact.chk_es.checked == false&& document.frmContact.chk_ss.checked == false)
		{
			alert("Please Check at least one interests.");
			document.frmContact.chk_pt.focus();
			return false;
		}
		
		if(Trim(document.frmContact.txt_email.value)=='')
		{
			alert("Please enter the Email");
			document.frmContact.txt_email.focus();
			return false;
		}
		if(!isEmail(document.frmContact.txt_email.value))
		{
			alert ("Please Enter Proper Email");			
			document.frmContact.txt_email.focus();
			return false;
		}
		
		/*if(Trim(document.frmContact.sel_interest.value)=='')
		{
			alert("Please Select Interested in");
			document.frmContact.sel_interest.focus();
			return false;
		}
		 if(Trim(document.frmContact.txtShipcity.value)=='')
		{
			alert("Please enter the Shipping City Name");
			document.frmContact.txtShipcity.focus();
			return false;
		}
		if(Trim(document.frmContact.txtShipstate.value)=='')
		{
			alert("Please enter the Shipping County Name");
			document.frmContact.txtShipstate.focus();
			return false;
		}
		if(Trim(document.frmContact.txtShipcountry.value)=='')
		{
			alert("Please enter the Shipping Country Name");
			document.frmContact.txtShipcountry.focus();
			return false;
		}
		if(Trim(document.frmContact.txtShipzip.value)=='')
		{
			alert("Please enter the Shipping Zip ");
			document.frmContact.txtShipzip.focus();
			return false;
		}*/
	
	//	document.frmContact.hidAction.value='edit'; 
		return true;
 }

