

 // Form1_Validator();
function checkinfo(theForm)
{
 
var com =  (theForm.Comments.value)


 if (com.indexOf("://")>-1)
{

alert("Potential Abuse of service detected.")

alert("You wrote:  "+(theForm.Comments.value)+", Your Information Has Been Saved.") 

if (confirm("Do you you wish to contact us with this problem?"))
{

alert("Thank you! We are keeping a log of the event for future reference.")

}
else
{
alert("Thank you! We are keeping a log of the event for future reference.")
}



 return (false);
}


if (theForm.Comments.value == "")
  {
    alert("Please type your comment.");
    theForm.Comments.focus();
    return (false);
  }

  if (theForm.Comments.value.length < 15)
  {
    alert("Please describe your comment in more details. Thank you");
    theForm.Comments.focus();
    return (false);
  }
 
  if (theForm.UserTel.value=="123456")
  {
  
	// var NewWinHeight=300;
	// var NewWinWidth=300;

	
	// var NewWinPutX=100;
	// var NewWinPutY=200;

	//Get what is below onto one line

	// TheNewWin =window.open("contactresponse.htm",'TheNewpop','fullscreen=no,toolbar=no,location=no,directories=no,	status=no,menubar=no,scrollbars=yes,resizable=no'); 

	//Get what is above onto one line

	// TheNewWin.resizeTo(NewWinHeight,NewWinWidth);
	// TheNewWin.moveTo(NewWinPutX,NewWinPutY);
	 return (false);
}
 
 return (true);
}