

function zoom(n,x,y){
window.open(n, '_blank', 'width='+x+',height='+y+',status=no,menubar=no,toolbar=no,location=no,scrollbars=no,resizable=yes');
}


function newColor(idCell) {
if (document.all) eval('document.all.'+idCell+'.style.background = "#dfdfdf"');
else eval('document.getElementById("' + idCell + '").style.background = "#dfdfdf"');
}

function backColor(idCell) {
if (document.all) eval('document.all.'+idCell+'.style.background = "#f9f9f9"');
else eval('document.getElementById("' + idCell + '").style.background = "#f9f9f9"');
}

function backColor2(idCell) 
{
  if (document.all) eval('document.all.'+idCell+'.style.background = "#ededed"');
  else eval('document.getElementById("' + idCell + '").style.background = "#ededed"');
}

function setBackColor(idCell, className) 
{
  if (document.all) eval('document.all.'+idCell+'.className = "'+className+'"');
  else eval('document.getElementById("' + idCell + '").className  = "'+className+'"');
}
