<!--
function openWin(url, w, h) {

    if (document.all) {
	width = w + 36;
	height = h + 30;
    } else {
    	width = w + 16;
    	height = h + 16;
    }

    aWindow = open("", "theWindow",
	"toolbar=no,width=" + width + ",height=" + height +
	",status=no,scrollbars=yes,resizable=no,menubar=no");

    aWindow.document.open();

    with (aWindow.document) {
	write("<html><head><title>", url, "</title></head>");
	write("<body onBlur='window.close();' bgcolor='black'>");
	write("<img src=", url, ">");
	write("</body></html>");
    }

    aWindow.document.close();
} 
// -->