<!-- hide this script from old browsers

// This script opens a new browser window and writes
// HTML to display an image with a title and caption

function show_photo( pFileName, pTitle,pWidth,pHeight) {

// specify window parameters
  photoWin = window.open( "", "photo","width=" + pWidth + ",height=" + pHeight + ",status=no,scrollbars=no,resizable=no,screenX=0,screenY=0,left=0,top=0");

// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title>');
  photoWin.document.write('<link rel="stylesheet" type="text/css" href="/css/style.css">');
  photoWin.document.write('</head><body bgcolor="#044f97" link="#ffff00" vlink="#e4cc00"><center>');
  photoWin.document.write('<img src="' +  pFileName + '">');
  photoWin.document.write('<br><a href="javascript:window.close()"><font class="navitext">Fenster schliessen</font></a>');
  photoWin.document.write('</body></html>');
  photoWin.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}
// done hiding from old browsers -->

