/*************************************************
* Validate the Login using JS  					 *
* Created: 19.12.04 -> 22:31am					 *
* Modified: 								 	 *
* Note:											 *
*************************************************/
function valLogin (which){
	// Make sure that the Colledge name is not empty
	if (which.username.value == ""){
		alert (loginARR[0]);
		which.username.focus();
		return false;
	}else
	
	// Make sure that the First name is not empty
	if (which.passwd.value == ""){
		alert(loginARR[1]);
		which.passwd.focus();
		return false;
	}
	else {
		return true;
	}
}