function verifyempty() {
var txt = "";
  for(var i = 0; i < document.bookfrm.title.length; i++) {
	if(document.bookfrm.title[i].selected) {
		if(document.bookfrm.title[i].value=="") {
		  txt = txt + "\n * Title";
		}
	}
  }
  if (document.bookfrm.name.value=="") {
     txt = txt + "\n * Name";
  }
  if (document.bookfrm.telephone.value=="") {
     txt = txt + "\n * Telephone";
  }
  
  if (document.bookfrm.address.value=="") {
    txt = txt + "\n * Address";
  }
  if (document.bookfrm.postcode.value=="") {
    txt = txt + "\n * Post Code";
  }
  for(var i = 0; i < document.bookfrm.services.length; i++) {
	if(document.bookfrm.services[i].selected) {
		if(document.bookfrm.services[i].value=="") {
		  txt = txt + "\n * Service";
		}
	}
  }
  
	if (txt) {
		alert ("The folowing fields are required:" + txt);
		return false;
	}
}



function verify() {
var txt = "";
  if (document.frm.name.value=="") {
     txt = txt + "\n * Name";
  }
  if (document.frm.phone.value=="") {
     txt = txt + "\n * Telephone";
  }
  
  if (document.frm.email.value=="") {
    txt = txt + "\n * E-mail address";
  }
  if (document.frm.message.value=="") {
    txt = txt + "\n * Message";
  }
  
	if (txt) {
		alert ("The folowing fields are required:" + txt);
		return false;
	}
}