function checkLeftForm() {  
	var msg = "";
	var errs=0;

	if (!checkEmail(document.forms.frm1.email)) {errs +=1; msg = msg + "Enter Correct Email Address\n" ;}
	if (!checkSelect(document.forms.frm1.srname) ) {errs +=1; msg = msg + "Select Subject\n" ;}
	if (!checkExists(document.forms.frm1.uname)) {errs +=1; msg = msg + "Enter Name\n" ;}

	if (errs == 0) {
		document.forms.frm1.action.value = "valid";
  		return true;
	}
	document.forms.frm1.action.value = ""; 
	alert("Correct the following field(s)\n\n"+msg);
	return false;
}


