function highlight(cell){	document.getElementById('cat'+cell).style.cursor="pointer";	document.getElementById('cat'+cell).style.backgroundColor="#CCCCCC";}function unhighlight(cell){	document.getElementById('cat'+cell).style.backgroundColor="#F6F6F6";}function loginFocus(field,elem){	if((elem.value=="Username")||(elem.value=="Password")){		elem.value = "";	}	elem.style.color = "#000000";	//if(field=="passwd"){		//elem.type = "password";			//}}function loginBlur(field,elem){	if(!elem.value){		elem.style.color = "#999999";		//elem.type = "text";		if(field=="passwd"){			elem.value = "Password";		}else if(field=="username"){			elem.value = "Username";		}	}}function loginError(){	alert('The login details you entered have not been recognised. Either you do not have an HR account or it is yet to be activated.');}function searchFocus(elem){	if(elem.value=="Search..."){		elem.value = "";	}	elem.style.color = "#000000";}function searchBlur(elem){	if(!elem.value){		elem.style.color = "#999999";		elem.value = "Search...";	}}
