<!--  hide script from old browsers
function NewWindow(type, imgname, imgtitle) {
    var winhgt = 350;
    var winwid = 500;
        
    var winfeatures = "scrollbars=none, width=" + winwid + ", height=" + winhgt + ", left=8,top=6";
    n_win = window.open("",
                        "ShowImage",
                        winfeatures);                       
    n_win.document.write('<html><head>');
    n_win.document.write('<title>');
    n_win.document.write(imgtitle);
    n_win.document.write('</title>');
    n_win.document.write('<style type=\"text/css\"> @import url(includes/popup-styles.css); </style>\n');
    n_win.document.write('</head>');
    n_win.document.write('<body  onBlur=\"window.close()\" onClick=\"self.close()\">');
    n_win.document.write('<img src="',imgname,'" />');
    n_win.document.write('<br /><b>');
    n_win.document.write(imgtitle);
    n_win.document.write('</b><br><br><br>');
    n_win.document.write('<a href=\"javascript:window.close()\">Close</a>');
    n_win.document.write('</body></html>');
    if(javascript_version > 1.0)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	} 
    n_win.document.close();
}
// end hiding contents -->
