
	function mOver(tdId,BackColour,ForeColour){
		if(document.getElementById){
			document.getElementById(tdId).style.color = ForeColour;
			document.getElementById(tdId).style.backgroundColor = BackColour;
		}
		else if(document.all){
			document.all.item(tdId).style.color = ForeColour;
			document.all.item(tdId).style.backgroundColor = BackColour;
		}
	}
			
	function mOut(tdId,BackColour,ForeColour){
		if(document.getElementById){
			document.getElementById(tdId).style.color = ForeColour;
			document.getElementById(tdId).style.backgroundColor = BackColour;
		}
		else if(document.all){
			document.all.item(tdId).style.color = ForeColour;
			document.all.item(tdId).style.backgroundColor = BackColour;
		}
	}
			
	function new_Window(url,w,h) {
	  window.open(url, 'details', 'left=250,top=175,width=' + w + ',height=' + h + ',status,scrollbars').focus();
	}

