
var imageWindow = null;
function openImage(theURL,x,y) {
	centerX = (screen.availWidth - x)/2 - 72;
	centerY = (screen.availHeight - y)/2 - 144;
	horizontal = x + 144;
	vertical = y + 144;
	if (imageWindow){
		if (!imageWindow.closed){
			imageWindow.focus();
		}
	}
	imageWindow = window.open('','name','width='+horizontal+',height='+vertical+'');
	imageWindow.moveTo(centerX,centerY);
	imageWindow.document.write("<html><head><title>judithbever.com</title></head><body bottommargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0 topmargin=0>");
	imageWindow.document.write("<table background=#ffffff border=0 width=" + x + " height=" + y + " cellpadding=0 cellspacing=72>");
	imageWindow.document.write("<td><img src=" + theURL + ">");
	imageWindow.document.write("</td></table></body></html>");
}
