
function validateContact(){
if (document.p.txtName.value==""){

	document.p.txtName.focus();

	alert ("Name?");

	return false;

}

if (document.p.txtEmail.value.indexOf("@")==-1||document.p.txtEmail.value.indexOf(".")==-1)

			{

			alert ("Valid Email?");

			document.p.txtEmail.focus();

			document.p.txtEmail.select();

			return false;

	}

if (document.p.txtMessage.value==""){

	document.p.txtMessage.focus();

	alert ("Message?");

	return false;

}
	return true;

}
