// ###################################################################
// Copyright 2004 by ratte

function openApplet(ordner,bild_ordner,applet_file,foto_file,AppWidth,AppHeight,alt,id,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+AppWidth+",height="+AppHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title>');
	newWindow.document.write('<meta http-equiv="refresh" content="1; URL='+applet_file+'?foto_file='+foto_file+'&bild_ordner='+bild_ordner+'&ordner='+ordner+'&id='+id+'">');
	newWindow.document.write('<body bgcolor="#CCCCCC" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}