<!--
function onmouse(th,fl) {
	if(fl) {
    	th.style.backgroundColor = "#efefef"
    } else {
      	th.style.backgroundColor = "#FFFFFF";
  	}
}

function onmouse_td(th, fl) {
	if(fl) {
    	th.style.backgroundColor = "#ffcccc";
		th.style.cursor = "hand";
    } else {
      	th.style.backgroundColor = "";
		th.style.cursor = "";
	}
}
//-->
