<!--
function MasterFormValidate(theForm)
{
	var errorDesc = "";

   		if (theForm.name.value == "")
  		{
    		theForm.name.focus();
			errorDesc +="Name\n";
  		}

   		if (theForm.email.value == "")
  		{
    		theForm.email.focus();
			errorDesc +="Email\n";
  		}

   		if (theForm.comment.value == "")
  		{
    		theForm.comment.focus();
			errorDesc +="Comment\n";
  		}

				
	if (errorDesc == "")
  		{
			return (true);
  		}
	else
  		{
			alert("There are problem(s) with your submission: you have missing inputs:\n\n" + errorDesc);
			errorDesc = "";
			return (false);
  		}

}

//-->
