<!--
//ajb116.com
function sendmail() {

   // Check the required forms are filled in
   var form = document.mailer;
   if (form.queryname.value.length == 0 || form.company.value.length == 0 || form.address1.value.length == 0 || form.postcode.value.length == 0 || form.telephone.value.length == 0 || form.info.value.length == 0) {
      // At least one required field is blank
      alert("Fields marked with an asterisk (*) are required fields and must be completed");
   } else {
      // required fields have been completed
      var queryname = document.forms[0].queryname.value;
      querystr = document.mailer.info.value + ', my details are; '
      var address='';
      for (i=0; i < document.mailer.elements.length-3; i++) {
         if (document.mailer.elements[i].value.length != 0) {
            address = address + document.mailer.elements[i].value + ', ';
         }
      }
      if (document.mailer.telephone.length != 0 ) {
         address = address + document.mailer.telephone.value + '.';
      }
      parent.location='mailto:sales@elitemerchandising.co.uk?subject=Website Query from ' + queryname + '&body=' + querystr + address;
      self.close();
   }

}

function highlight(obj) {
      obj.style.color = "#FF0000";
   }

   function lowlight(obj) {
      obj.style.color = "#000000";
   }

function openWin(URL, Name, Width, Height) {

   // Function to open a new popup window with minimal options

   var wURL = URL;
   var wName = Name;
   var wWidth = Width;
   var wHeight = Height;
   var options = 'width=' + wWidth + ',height=' + wHeight +',toolbar=no,scrollbars=no,resizable=no,status=no';
   var launch = null;
   launch=window.open(wURL,wName,options);
   if (launch != null) {
     if (launch.opener == null ) {
        launch.opener = self;
     }
   }
}
//-->