var x_pos=screen.width/2-320
var y_pos=screen.height/2-225

var win_open=0;

function popup(nr){
	if(win_open){
	  if(win.closed){
		  win_open=0;
			popup(nr);
		}else{
	    win.document.images[0].src='../../img/thumbs/l/'+nr+'.jpg';
		  win.focus();
		}
	}else{
	  win=window.open("","popup","scrollbars=no,width=640,height=450,left="+x_pos+",top="+y_pos);
		win_open=1;
	  win.document.write("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>");
	  win.document.write("<html>");
	  win.document.write("<head>");
		win.document.write("<meta http-equiv='content-type' content='text/html; charset=ISO-8859-1'>");
		win.document.write("<title>Fotogalerie</title>");
		win.document.write("<link rel=stylesheet type='text/css' href='../../css/stadthotel.css'>");
	  win.document.write("<meta http-equiv='content-type' content='text/html; charset=ISO-8859-1'>");
	  win.document.write("</head>");
	  win.document.write("<body class='dunkela'>");
		win.document.write("<table style='height:100%' align='center'><tr><td height='100%' valign='middle'>");
    win.document.write("<a href='Javascript:opener.win_open=0;window.close();'><img src='../../img/thumbs/l/"+nr+".jpg' border=0 alt='"+nr+".jpg' title='Fenster schließen'></a>");
		win.document.write("<br><center><a href='Javascript:opener.win_open=0;window.close();'>Fenster schließen</a></center>");
		win.document.write("</td></tr></table>");
		win.document.write("</body>");
	  win.document.write("</html>");
	}
}

