<!-- start of JavaScript code, hide code for old browsers
// display a picture in a new window with a vertical scrollbar
// Usage: <A href="javascript:void(0)" onClick="fOpen('fritz.jpg', '310', '445')">my picture</A>
// width and height ahould be about 20 bigger then the picture dimensions
function fOpen(fname, width, height){
	var nLastColon = fname.lastIndexOf('.');
	if (nLastColon <= 0) nLastColon = fname.length-1;
	var nLastSlash = fname.lastIndexOf('\/');
	var sWin = fname.substring(nLastSlash+1, nLastColon);
	newWindow = window.open("","sWin","toolbar=0,scrollbars=yes,resizable=yes,width="+width+",height="+height);
	newWindow.document.write("<HTML><HEAD><TITLE>" + sWin + "</TITLE></HEAD>");
	newWindow.document.write('<BODY onBlur="window.close()">'); // close window if focus is removed
	newWindow.document.write('<IMG SRC=' + fname + '>');
//	newWindow.document.write('<script language="JavaScript">document.title="Any Title";setTimeout("window.close()",20000);</script>'); // close window after 8 seconds
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
}
// -->

