function KeyDownHandler(btn)
{
	if (event.keyCode == 13)
	{
		event.returnValue=false;
		event.cancel = true;
		btn.click();
	}
}

function TrowOn(src,OnColor){src.style.cursor = 'hand'; src.bgColor = OnColor;} 

function TrowOff(src,OffColor){src.style.cursor = 'default'; src.bgColor = OffColor;}

function TrowHighlight(src,HighlightColor){src.style.cursor = 'default'; src.bgColor = HighlightColor;} 		
