// JavaScript Document
<!--
function NewColor(obj){
	obj.style.backgroundColor="#CCCCCC";
	obj.style.cursor="pointer";
}
function OldColor(obj){
	obj.style.backgroundColor="#F1F2F2";
	obj.style.cursor="pointer";
}
//-->