function frmSubmitValidate() {
	if(document.frmSubmit.txtTitle.value==""){
		alert("Please give your Article a Title");
		return false;
	}
	if(document.frmSubmit.txtAuthorName.value==""){
		alert("Please include your Name!");
		return false;
	}
	if(document.frmSubmit.txtAuthorEmail.value==""){
		alert("Please include your Email Address!");
		return false;
	}
	if(document.frmSubmit.tAndC.checked){
		return true;		
	}
	alert("You must agree to the BMS Terms and Conditions and tick the checkbox \n before your article will be submitted! \n Thanks!");
	return false;
}

function show(obj) {
  eval("document.all." + obj + ".style.display='block'");
  eval("document.all." + obj + ".style.visibility='visible'");
}
function clearIt(obj) {
  eval("document.all." + obj + ".style.display='none'");
  eval("document.all." + obj + ".style.visibility='hidden'");
}
