function hili(id,status,menu){
	if(document.getElementById){
		hiCol = (menu==0)? "#0D857E" : "#000000";
		if(status==1){
			stdCol=document.getElementById(id).bgColor;
			document.getElementById(id).bgColor=hiCol;
		} else if (status==0){
			document.getElementById(id).bgColor=stdCol;
		}
	}
}