// JavaScript Document

function RegIdValidation (){ // search with RegID validation
	if (document.forms[1].textRegId.value == ""){
		alert ("Please enter a valid Reg.ID");
		return;
	}else if (document.forms[1].textRegId.value != "") {
		document.RegIDForm.submit ();
	}
}

