<!--
var win = "";

function ViewImage(url,title,ix,iy) 
{
var sx = screen.width;
var sy = screen.height;
var dx = Math.round((sx-ix)/2);
var dy = Math.round((sy-iy)/2);

var thisbrowser;
var NS;
var NS4;
var NS6;

    if (document.layers)
	{
	thisbrowser = "NN 4x";
	NS  = true;
	NS4 = true;
	NS6 = false;
	}
    if (document.all)
	{
	thisbrowser = "MS IE";
	NS = false;
	}
    if (!document.all && document.getElementById)
	{
	thisbrowser = "NN 6x";
	NS  = true;
	NS4 = false;
	NS6 = true;
	}

var ifile = "http://eli.sls.lib.il.us/50311_00/main/" + url;
var win;
var sWidth;
var sHeight;

    win = window.open("","","width="+ix+",height="+iy+",scrollbars=no,resizable=no,menubar=no,toolbar=no,top="+dy+",left="+dx);
    if (NS4) 
	{
	sWidth  = win.innerWidth;
	sHeight = win.innerHeight;
	} 
    else 
	{
	sWidth  = win.document.body.clientWidth;
	sHeight = win.document.body.clientHeight;
	}

    win.document.open();
    win.document.write("<html><head><title>"+title+"</title></head><body onBlur=this.close();>");
    win.document.write("<div style='position:absolute;width:"+ix+"px;height:"+iy+"px;left:0px;top:0px'>");
    win.document.write("<table border=0 cellpadding=0 cellspacing=0 bgcolor=lightyellow>");
    win.document.write("<tr><td>");
    win.document.write("<img src="+ifile+" width=" + ix + " height=" + iy + "border=1>");
    win.document.write("</td></tr></table></div></body></html>");
    win.document.close();
}
//-->
