

function openWin(imgWidth,imgHeight,url,name) {
imgWidth += 15;
imgHeight += 25;
var temp = window.open("",name,"toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=" + imgWidth + ",height=" + imgHeight + ",left=20,top=20,screenX=20,screenY=20");
	temp.document.open("text/html","replace");
	temp.document.write("<html><style type=\"text/css\" media=\"screen\">@import url(/historynky/style/historynky_screen.css);</style><body id=\"popup\"><p><img src=\"" + url + "\" border=\"2\"></p><p id=\"close\"><a href=\"javascript:this.close()\"><b>Close Window</b></a></p></body></html>");
	temp.document.close();
	temp.focus();
return;
}

//EXAMPLE LINK:  href="javascript:openWin(570,380,'images/imagename.jpg')"

