
function contactForm(formName)
{
	if (formName.txtName.value=="")
	{
		alert("Please enter your name!");
		formName.txtName.focus();
		return false;
	}
	
	
	if (formName.txtEmail.value=="")
	{
		alert("Please enter your Email!");
		formName.txtEmail.focus();
		return false;
	}
	if (!formName.txtEmail.value.match(/^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$/))
	{
		alert("Please enter a valid Email!");
		formName.txtEmail.focus();
		formName.txtEmail.value = "";
		return false;
	}
	
	
	
	return;	
	
}



	