// JavaScript Document
function velidemail()
{
	if(isvalidmail(document.getElementById("txt_email").value))
	{
		alert("Enter Valid Email Address");
		document.getElementById("txt_email").focus();
		document.getElementById("txt_email").value="";
		return false;
	}
	else
	{
	return true;
	}
	if(isvalidmail(document.getElementById("txt_confirm").value))
	{
		alert("Enter Valid Email Address");
		document.getElementById("txt_confirm").focus();
		document.getElementById("txt_confirm").value="";
		return false;
	}
	else
	{
	return true;
	}
}
function checkemail()
{
if(document.getElementById("txt_fname").value=="" )
{
	document.getElementById("txt_fname").focus();
	alert("Please Fill Required Information");
	return false;
}
if(document.getElementById("txt_email").value=="" )
{
	document.getElementById("txt_email").focus();
	alert("Please Fill Required Information");
	return false;
}
if(document.getElementById("enquiry").value=="" )
{
	document.getElementById("enquiry").focus();
	alert("Please Select Neture of Enquiry");
	return false;
}
if(document.getElementById("txt_email").value!=document.getElementById("txt_confirm").value )
{
alert("Email and Confirm Email does not match");
document.getElementById("txt_email").focus();
	return false;
}

if(document.getElementById("txtCaptcha").value=="")
{
	document.getElementById("txtCaptcha").focus();
	document.getElementById("result").innerHTML="Please retype the captcha";
	return false;
}

}
