function checkDot(txt)
{
   var str=String();
   str=txt;
   dot=0;
   for(var i=0;i<str.length;i++)
   {
   
      var xx =str.substring (i, i+1)
	  if( xx=="." || xx=="," || xx=="/" || xx=="\\" || xx==";" || xx=="'" || xx=="\"" || xx=="!" || xx=="@" || xx=="#" || xx=="$" || xx=="%" || xx=="^" || xx=="&" || xx=="*" || xx=="(" || xx=="\)" || xx=="-" || xx=="_" || xx=="+" || xx=="=" || xx=="|" || xx=="<" || xx==">" || xx=="?" )
	  {
	     dot=dot+1;
	  }
   }
   if(dot>0)
	  return true;
   else
	  return false;
}
function isValid()
{
  var x;
  var y;
  

 x=document.forms[0].Found.value;
  if(x==0)
  {
    	alert("Please Enter the Where found.");
		document.forms[0].Found.focus();
		return false
  }
 x=document.forms[0].Date.value;
  if(x==0)
  {
    	alert("Please Enter the Date found.");
		document.forms[0].Date.focus();
		return false
  }
 x=document.forms[0].Animal.value;
  if(x==0)
  {
    	alert("Please Enter the Dog or Cat.");
		document.forms[0].Animal.focus();
		return false
  }
   x=document.forms[0].Sex.value;
  if(x==0)
  {
    	alert("Please Enter the Sex.");
		document.forms[0].Sex.focus();
		return false
  }
   x=document.forms[0].Details.value;
  if(x==0)
  {
    	alert("Please Enter the Description.");
		document.forms[0].Details.focus();
		return false
  }
   x=document.forms[0].Contact.value;
  if(x==0)
  {
    	alert("Please Enter the Contact details.");
		document.forms[0].Contact.focus();
		return false
  }
  
}
