function ChangeColor(tableRow, highLight)
{
	    if (highLight)
	    {
	      tableRow.style.backgroundColor = '#E3E3E3';
	      tableRow.style.cursor="hand";

	    }
	    else
	    {
	      tableRow.style.backgroundColor = 'white';
	      tableRow.style.cursor="pointer";
	    }
}

function NewWindow(tr,mypage,myname)
{
	win = window.open(mypage,myname);
	win.focus();
}
