var inValid = "azertyuiopqsdfghjklmwxcvbn0123456789";

function Form_Validator(theForm)

{

	var alertstr = " ";



	if (theForm.name.value == "")

	{

		alert(alertstr + "Please fill in your name.");

		theForm.name.focus();

		return (false);

	}

	if (theForm.name.value.length < 4)

	{

		alert(alertstr + "Please fill in your name correctly.");

		theForm.name.focus();

		return (false);

	}

	if (theForm.email.value == "")

	{

		alert(alertstr + "Please specify a valid contact email.");

		theForm.email.focus();

		return (false);

	}

	if (theForm.comment.value == "")

	{

		alert(alertstr + "Please write a message.");

		theForm.comment.focus();

		return (false);

	}
}