function newWindow(theImage) {
 content = '<script src="scripts.js" language=javascript type="text/javascript">';
 popWindow = window.open('', 'popWin','width=800,height=600,toolbar=no,location=no,scrollbars=no')
 popWindow.document.write("<html><head><title>Original Screenshot</title>")
 popWindow.document.write(content)
 popWindow.document.write("</script></head><body left margin = 0 topmargin = 0><img src = "+theImage+" onLoad = ResizeWindow()></body></html>")
}

function ResizeWindow() {

var isNav4, isIE4; 
if (parseInt(navigator.appVersion.charAt(0)) >=4){ 
isNav4 = (navigator.appName == "Netscape") ? 1 : 0; 
isIE4 = (navigator.appName.indexOf("Microsoft") !=-1) ? 1 : 0;
 }


if(isIE4) {
 window.resizeTo(500, 500);
	width = 520 - (document.body.clientWidth -  document.images[0].width);                                                              
	height = 500 - (document.body.clientHeight -  document.images[0].height);
	window.resizeTo(width, height);
 }

if (isNav4){
 window.innerWidth = document.layers[0].document.images[0].width;
 window.innerHeight = document.layers[0].document.images[0].height;
 }
}