/*************************************************
* Validate the Login using JS  					 *
* Created: 19.12.04 -> 23:00pm					 *
* Modified: 								 	 *
* Note:											 *
*************************************************/
function valContact(which){
	// Make sure that the Colledge name is not empty
	if (which.name.value == ""){
		alert (contactARR[0]);
		which.name.focus();
		return false;
	}else
	
	// Make sure that the First name is not empty
	if (!isEMailAddr(which.email)){
		alert(contactARR[1]);
		which.email.focus();
		which.email.select();
		return false;
	}else
	
	// Make sure that the Company telephone is not empty
	if (!isNumber(which.telephone) || which.telephone.value == ""){
		alert(contactARR[2]);
		which.telephone.focus();
		return false;
	}else
	// Make sure that the First name is not empty
	if (which.message.value == ""){
		alert(contactARR[3]);
		which.message.focus();
		return false;
	}
	else {
		return true;
	}
}
