if (top!=self) {top.location.href=this.location.href;}

function show_pic(pname,  ptitle, w, h) {  
  var hh = h+1;
  var ww = w+1;
  NWin = open ('', 'Pic', 'menubar=0,location=0,status=0,toolbar=0,scrollbars=0,resizable=0,height='+hh+',width='+ww);
  NWin.document.open();
  NWin.document.write('<HTML><HEAD><TITLE>'+ptitle+'</TITLE></HEAD>');
  NWin.document.write('<STYLE type=text/css>BODY {margin: 0px 0px 0px 0px;}</STYLE>');
  NWin.document.write('<BODY bgColor=#DDE3F5><TABLE width=100% height=100% cellspacing=0 cellpadding=0 border=0><TR><TD height=100% width=100% align=center valign=center><IMG src='+pname+' alt="'+ptitle+'" align=center></TD></TR></TABLE></BODY></HTML>');
  NWin.document.close();
}

function OpenNew(url) {  
  NWin = open (url, 'additional', 'menubar=0,location=0,status=0,toolbar=0,scrollbars=1,resizable=1,height=500,width=600');
}

function changeColor(idCell,color) {
//  eval('document.all.'+idCell+'.style.background = "'+color+'"');
 eval('document.getElementById("' + idCell + '").style.background = "'+color+'"');
}

function changeURL(Url) {
  location.href=Url;         // +document.form.;
}

