function verify()
{
	if(document.frm_contact_us.txt_name.value == "")
	{
		alert("Please Enter Name.");
		document.frm_contact_us.txt_name.focus();
		return false;
	}
	else
	{
		if (!isAlphabetic(document.frm_contact_us.txt_name.value))
		{	
			alert("Please Enter only Alpha Characters");
			document.frm_contact_us.txt_name.focus();
			document.frm_contact_us.txt_name.select();
			return false;
		}
	}
	
	if(document.frm_contact_us.txt_email.value == "")
	{
		alert("Please enter Email.");
		document.frm_contact_us.txt_email.focus();
		return false;
	}
	if(!isEmail(document.frm_contact_us.txt_email.value))
	{
		alert ("Please Enter Proper Email");			
		document.frm_contact_us.txt_email.focus();
		return false;
	}
	
	if(document.frm_contact_us.sel_interest.value == "")
	{
		alert("Please Select Interested in.");
		document.frm_contact_us.sel_interest.focus();
		return false;
	}
/*	if(document.frm_contact_us.txt_phone.value == "")
	{
		alert("Please enter Phone Number.");
		document.frm_contact_us.txt_phone.focus();
		return false;
	}
	else
	{
		if (!isInteger(document.frm_contact_us.txt_phone.value))
		{	
			alert("Please Enter Numeric Value.");
			document.frm_contact_us.txt_phone.focus();
			document.frm_contact_us.txt_phone.select();
			return false;
		}
	}
	*/
	document.frm_contact_us.hidVal.value = "ACTION";
	return true;
}
