// JavaScript Document
function validate()
	
{

	if(document.mdsform.Surname.value=="")
	{
		alert("Please Enter Your Surname");
		document.mdsform.Surname.focus();
   		return false;
	}
	
	if(document.mdsform.Telephone.value=="")
	{
		alert("Please Enter Your Telephone Number");
		document.mdsform.Telephone.focus();
   		return false;
	}
	
 /*  if ((document.mdsform.Code.value=="SKXW") || (document.mdsform.Code.value=="skxw") )
   {
     var codetest = "xxx";
   }
   
    if (codetest != "xxx")    
	{
      alert('You must enter the correct security code');
	  document.mdsform.Code.value='';
	  document.mdsform.Code.focus();
	  return false;
}
	*/


}
