// JavaScript Document

function TrowOn(src,OnColor) {
	src.style.cursor = 'hand'; 
	src.bgColor = OnColor;
} 
 
function TrowOff(src,OffColor) {
	src.style.cursor = 'default'; 
	src.bgColor = OffColor;
} 
