function toolover(obj,vcol)
{
	obj.style.background=vcol;
	obj.style.cursor='hand';

}

function toolout(obj,vcol)
{
	obj.style.background=vcol;
}

function newWin(sWin, iWidth, iHeight) 
{
	tableWindow = window.open(sWin,'_blank', 'width='+iWidth+',height='+iHeight+',resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes')

	tableWindow.focus()
}
