var mouseover_bool		= false;

var RowOverColor	= '#efefef';
var RowDefaultColor	= '#FFFFFF';

function trMouseOver()
{
	if(mouseover_bool) return;
	mouseover_bool = true;
	this.style.backgroundColor = RowOverColor;
	this.style.cursor= "pointer";
}

function trMouseOut()
{
	mouseover_bool = false;
	this.style.backgroundColor = RowDefaultColor;
	this.style.cursor= "default";
}

function trMouseClick()
{
	win = eval("window.open($(this).find('td')[0].children[0].href, '')");
	win.focus();
	return false;
}
