<!--
	function Form_Validator(theForm)
	{
		if (theForm.name.value == "")
		{
			alert("\"Name\" field can not be null!");
			theForm.name.focus();
			return false;
		}
		
		if (theForm.email.value == "")
		{
			alert("\"E-mail\" field can not be null!");
			theForm.email.focus();
			return false;
		}
		
		if (theForm.message.value == "")
		{
			alert("\"Message\" field can not be null!");
			theForm.message.focus();
			return false;
		}
		
		return (true);
	}
//-->