

function expand_thumbnail(ifile) { 
var pic= new Image();
pic.src=ifile;
var win;
var sWidth;
var sHeight;
var NS = (document.layers) ? 1 : 0;
win = window.open("","imageviewer","width="+pic.width+",height="+pic.height+",menubar=no,toolbar=no");
if (NS) {
sWidth = win.innerWidth;
sHeight = win.innerHeight;
} else {
sWidth = win.document.body.clientWidth;
sHeight = win.document.body.clientHeight;
}
if(sWidth!=pic.width || sHeight!=pic.height) {
win.close();
setTimeout("expand_thumbnail('"+ifile+"')", 250);
return;
}
win.document.open();
win.document.write("<html><head><title>Nomix Professional</title>");
win.document.write("</head><body>");
win.document.write('<div style="position:absolute;width:'+pic.width+'px;height:'+pic.height+'px;left:0px;top:0px">');
win.document.write("<img src="+ifile+"></div></body></html>");
win.document.close();
}
