// JavaScript Document
function checkMe()
  {
   error = 0;
   
   
  if(error==0)
   {
    if (document.form.Name.value.length == 0)
    {
     error=1;
     alert("Please enter your name!");
     document.location.replace("contactform.html#Contact");
    }
   }

 if(error==0)
   {
    if (document.form.Organisation.value.length == 0)
    {
     error=1;
     alert("Please enter your organisation!");
     document.location.replace("contactform.html#Contact");
    }
   }

if(error==0)
   {
    if (document.form.Telephone.value.length == 0)
    {
     error=1;
     alert("Please enter your telephone number!");
     document.location.replace("contactform.html#Contact");
    }
   }

  if(error==0)
   {
    if (document.form.Email.value.length == 0)
    {
     error=1;
     alert("Please enter your Email address!");
     document.location.replace("contactform.html#Contact");
    }
   }

   if(error==0)
   {
    off('submitme');
    off('resetme');
    document.form.submit();
   }

  }