function checkdata()
{
     var uppervalue;

 if (document.ThisForm.Comment.value.length > 1) {
	 window.location="nothanks.asp";
         return false;
   }

 if (document.ThisForm.Contact.value.length < 2) {
         alert ("Please enter your contact name");
                  document.ThisForm.Contact.focus();
         return false;
   }
 if (document.ThisForm.Phone.value.length < 2) {
         alert ("Please enter your contact Phone No.");
                  document.ThisForm.Phone.focus();
         return false;
   }
 if (document.ThisForm.Email.value.length < 2) {
         alert ("Please enter your contact Email address");
                  document.ThisForm.Email.focus();
         return false;
   }

 if (document.ThisForm.Please.value != 'NOTICE') {
         alert ("Incorrect security word");
                  document.ThisForm.Please.focus();
         return false;
   }

     return  true
}
