
// Function to validate form submission
function check_form() {
if  (document.contact.NAME.value == ""){ alert("Please enter your name"); document.contact.NAME.focus(); return false; }
if  (document.contact.COMPANY.value == ""){ alert("Please enter your company name"); document.contact.COMPANY.focus(); return false; }
if  (document.contact.TELEPHONE.value == ""){ alert("Please enter your telephone number"); document.contact.TELEPHONE.focus(); return false; }
if  (document.contact.FROMEMAIL.value == ""){ alert("Please enter your email address"); document.contact.FROMEMAIL.focus(); return false; }

if  (document.contact.captchacode.value == ""){ alert("Please enter the form code"); document.contact.captchacode.focus(); return false; }
}
// Function to reload page if error code returns page with querystring
var qs = window.location.search.substring(1);
if (qs == "rl"){
var newLocation = location.href;
var x = newLocation.length;
var y = x - 3;
newLocation = newLocation.substring(0,y);
window.location=(newLocation);
};

//