<!--
function over(obj, bg, fc){
	obj.style.backgroundColor=bg;
	if(fc!=""){
		obj.style.color=fc;
	}
}
function out(obj, bg, fc){
	obj.style.backgroundColor=bg;
	if(fc!=""){
		obj.style.color=fc;
	}
}
-->
