   function myPopup(href)
   {
    mywindow = window.open (href, "123", "location=0,status=0,scrollbars=0, width=400, height=100");
    mywindow.moveTo(0,0);
   } 
 	 function ValidateForm()
	  {
    if (document.QueryForm.Name.value.length == 0){
     alert("Please enter your Name");
     return false;
    }
    if (document.QueryForm.Email.value.search(/^.+@.+\..+$/)){
     alert("Please include a valid email address");
     return false;
    }
    if (document.QueryForm.Phone.value.length == 0){
     alert("Please enter a Phone Number");
     return false;
    }
    if(document.QueryForm.Phone.value.length < 8){
     alert("Please enter a Valid Phone Number");
     return false;
    }
    
    else
    {
     myPopup('waitmessage.html');
     document.QueryForm.submit();
     return false;
    }
   }