function checkdata()
{
     var uppervalue;


 if (document.ThisForm.Surname.value.length < 2) {
         alert ("Please enter at least two letters of a surname");
                  document.ThisForm.Surname.focus();
         return false;
   }

     return  true
}
