// JavaScript Document
var win = '';
function openWin(openURL,title,width,height){
eval("imageWindow = open('', 'imageWindow','width="+width+",height="+height+",toolbar=no,menubar=no,directories=no,location=no,resizable=no,scrollbars=no,status=no,top=200,left=300')");
imageWindow.document.write ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\n');
imageWindow.document.write ('<html xmlns="http://www.w3.org/1999/xhtml">\n');
imageWindow.document.write ('<head>\n');
imageWindow.document.write ('<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n');
imageWindow.document.write ('<style>img{border:0px;}</style>\n');
imageWindow.document.write ('<link href="/styles/style.css" type="text/css" rel="stylesheet" />\n');
imageWindow.document.write ('<title>'+title+'</title>\n');
imageWindow.document.write ('</head>');
imageWindow.document.write ("<body OnLoad='this.focus();' style='margin:5px;'>\n"); 
imageWindow.document.write ("<img src='"+openURL+"'>");
imageWindow.document.write ('</body>\n');
imageWindow.document.write ('</html>');
imageWindow.document.close(); 
	
/*	if(win){win.close();}
		if(width != null && height != null){
			var strVar = 'width='+width+',height='+height+',toolbar=no,menubar=no,directories=no,location=no,resizable=no,scrollbars=no,status=no,top=200,left=300';
			win = window.open(openURL, "win", strVar);
		}else{ win = window.open(openURL);}
		win.focus();*/
}
