if (window != top) top.location.href = location.href;

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=700,height=480,left = 50,top = 30');");
}

newWindow = new Object;
newWindow.closed = true;
function ViewImage(file, iy, ix, title)
{
      if (!newWindow.closed) {  
        newWindow.close();
      }
      newWindow = window.open("","","height="+ix+",width="+iy+",resizable");
      newWindow.document.write("<HTML><HEAD><TITLE>");
      newWindow.document.write(title);
      newWindow.document.write("</TITLE>"); 
      newWindow.document.writeln("</HEAD><BODY BGCOLOR=\"#ffffff\" BACKGROUND=\"loading.png\">");
      newWindow.document.writeln("<div style=\"position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px\">");
      newWindow.document.writeln("<img border=\"0\" src="+file+" style=\"cursor:hand\" onClick=\"window.close()\" alt=\"Click anywhere on the picture to close this window.\">");
      newWindow.document.writeln("</div>");
      newWindow.document.close();
      newWindow.focus();
      newWindow.moveTo(100,50);
      
  }
