function verifycnt() {
var txt = "";

  if (document.frmcnt.name.value=="") {
     txt = txt + "\n * Name";
  }
  if (document.frmcnt.email.value=="") {
     txt = txt + "\n * E-mail";
  }
  if (document.frmcnt.telephone.value=="") {
     txt = txt + "\n * E-mail";
  }
  if (document.frmcnt.email.value=="") {
     txt = txt + "\n * Contact Number";
  }
  if (document.frmcnt.message.value=="") {
     txt = txt + "\n * Message";
  }
  if (!document.frmcnt.terms.checked) {
     txt = txt + "\n * Terms &amp; Conditions are not accepted \n";
  }
  
	if (txt) {
		alert ("The folowing fields are required:\n" + txt);
		return false;
	}	
}

function verifybook() {
var txt = "";

  if (document.frmbook.name.value=="") {
     txt = txt + "\n * Name";
  }
  if (document.frmbook.email.value=="") {
     txt = txt + "\n * E-mail";
  }
  if (document.frmbook.land_line_number.value=="") {
     txt = txt + "\n * Land Line Number";
  }
  if (document.frmbook.address.value=="") {
     txt = txt + "\n * Address";
  }
  if (!document.frmbook.terms.checked) {
     txt = txt + "\n * Terms &amp; Conditions are not accepted \n";
  }

	if (txt) {
		alert ("The folowing fields are required:" + txt);
		return false;
	}	
}