/*
Title: JavaScript Library v 1.0
Date: 01/06/2006
Copyright: Joerg Drzycimski http://www.drzycimski.com
*/

// Window Status Text
	window.defaultStatus='Willkommen im Hafen Orth auf Fehmarn';

// Image Popup Function
	function imagePopup(strURL, intWidth, intHeight) {
		
		var intTop=(screen.availHeight-intHeight)/2;
		var intLeft=(screen.availWidth-intWidth)/2;
	
		var strOptions="scrollbars=no,height="+intHeight+",width="+intWidth+",top="+intTop+",left="+intLeft;
		
		newWindow = window.open('', 'newWinFotos', strOptions);
		newWindow.document.write('<head>');
		newWindow.document.write('<title>Image Zoom</title>');
		newWindow.document.write('</head>');
		newWindow.document.write('<body style="margin: 0px; padding: 0px; background: White;" onBlur="window.close()">');
		newWindow.document.write('<p><img id="i1" src="'+strURL+'" title="Zum Schliessen bitte auf das Bild klicken!" onClick="window.close()"></p>');
		newWindow.document.write('</body>');
		newWindow.document.close();
		newWindow.focus();
	}

