
function Form_ValidatorPayPal(theForm)
{
	if (theForm.item_name.value == "")
  		{
    	alert("Enter invoice number or service/product you are paying for");
    	theForm.item_name.focus();
    	return (false);
  		}
  if (theForm.amount.value == "")
  		{
    	alert("Please Enter Payment Amount");
    	theForm.amount.focus();
    	return (false);
  		}
  return(true);
}
 
function Form_ValidatorRequest(theForm)
{
	if (theForm.name.value == "")
  		{
    	alert("Please enter your FULL name");
    	theForm.name.focus();
    	return (false);
  		}
	re = /^[a-zA-Z0-9_.\-]+@[a-zA-Z0-9.\-]+[a-zA-Z0-9\-]\.[a-zA-Z][a-zA-Z]+$/;
  	if (!re.test(theForm.email.value))
  		{
    	alert("Please fill in a correct E-mail address");
    	theForm.email.focus();
    	return false;
  		}
	if (theForm.phone.value == "")
  		{
    	alert("Please enter your phone number");
    	theForm.phone.focus();
    	return (false);
  		}
  if (theForm.message.value == "")
  		{
    	alert("Please enter message");
    	theForm.message.focus();
    	return (false);
  		}
  return(true);
}
 
