<!--<!-- Original:  Anders Jennerberg (anders@katedral.se)  --><!-- fixed and trouble-shot by Kitty Brazelton -->function ViewImage(ifile,ix,iy,ititle) { var win;var sWidth;var sHeight;var NS = (document.layers) ? 1 : 0;win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no,resizable=yes");if (NS) {sWidth = win.innerWidth;sHeight = win.innerHeight;if(sWidth!=ix || sHeight!=iy) {win.close();setTimeout("ViewImage('"+ifile+"',"+ix+","+iy+",'"+ititle+"')", 250);return;}win.document.open();win.document.write("<html><head><title>"+ititle+"</title>");win.document.write("</head><body bgcolor='#000000'>");win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');win.document.write("<img src="+ifile+"></div>");win.document.write('<div style="position:absolute;left:10px;top:10px;">');win.document.write('<font face="Arial, Helvetica, sans-serif" size="1" color="#CCCCCC">&copy; 1997 Marc PoKempner</font></div></body></html>');win.document.close();} else {win.document.open();win.document.write("<html><head><title>"+ititle+"</title>");win.document.write("</head><body bgcolor='#000000'>");win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:2px;top:2px">');win.document.write("<img src="+ifile+"></div>");win.document.write('<div style="position:absolute;left:10px;top:10px;">');win.document.write('<font size="1" color="#CCCCCC" face="Arial, Helvetica, sans-serif">&copy; 1997 Marc PoKempner</font></div></body></html>');	}}//  End -->