function request_Validator(theForm)
{


if (theForm.name.value == "")
  {
    alert("Please enter your name");
    theForm.name.focus();
    return (false);
  }
  
  
  if (theForm.email_from.value == "")
  {
    alert("Please enter your Email Address.");
    theForm.email_from.focus();
    return (false);
  }

    
	window.open('http://www.angelrestaurant.com.au/thanks.htm','','width=420,height=320,left=20,top=20,screenX=20,screenY=20');
	return (true);
}