function chkdata2() {
var themessage = "There appears to be a problem with : ";
fnam = document.Form2.fname.value
lnam = document.Form2.lname.value
addr = document.Form2.address.value
town = document.Form2.town.value
pcode = document.Form2.pcode.value
phone = document.Form2.phone.value
eml = document.Form2.email.value
about = document.Form2.hear_about.value


if (fnam=="" || lnam=="") {
themessage = themessage + " Blank Name;";
}

if (addr=="" || town=="" || pcode=="") {
themessage = themessage + " Blank Address;";
}

if (phone=="") {
themessage = themessage + " Blank Telephone Number;";
}

if (about=="") {
themessage = themessage + " Blank Hear About Us;";
}

if (eml=="") {
themessage = themessage + " Blank E-mail;";
}
if (eml!="") {
if ((eml.indexOf(".") == -1)
||  (eml.indexOf("@") == -1))
{
themessage = themessage + " Invalid E-mail;";
}
}


if (themessage == "There appears to be a problem with : ") {
return true;
}
else {
alert(themessage);
return false;
   }
}

