function OpenWin(url,name,w,h)
{
	window.open(url, name, "width="+w+" ,height="+h+"");
}

function newColor(idCell) 
{
	if (document.all) eval('document.all.'+idCell+'.style.background = "#165ecf"');
	else eval('document.getElementById("' + idCell + '").style.background = "#165ecf"');
}

function backColor(idCell) 
{
	if (document.all) eval('document.all.'+idCell+'.style.background = "#67a7e5"');
	else eval('document.getElementById("' + idCell + '").style.background = "#67a7e5"');
}