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

