function checklogin() {
	var	errs = false;
	var alertMsg = "";

	if (echeck(document.passform.email.value)==false) {
		alertMsg += " - Invalid email address" + "\n";
		 errs = true;
	}

	if (document.passform.captcha.value== "" || document.passform.captcha.value==null) {
		alertMsg += " - Please enter the Security Code" + "\n";
		 errs = true;	
	}
		
	if (errs == true) {
		alert (alertMsg)
		return false;
	}  else {
		return true;
	}
	
}