//Verify Contact Form

function VerifyContactForm() {
var txt = "";

  if (document.frmcnt.name.value=="") {
     txt = txt + "\n * Name";
  }
  if (document.frmcnt.email.value=="") {
     txt = txt + "\n * Email";
  }
  if (document.frmcnt.telephone.value=="") {
     txt = txt + "\n * Telephone";
  }
  
  if (document.frmcnt.message.value=="") {
     txt = txt + "\n * Message";
  }

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

