// das hier ist das 'perfekte pop-up-window' von accessify.com:

function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}


// funktion fuer bildervergroesserung, die seite wird on-the-fly geschrieben ;-)
function open_window(bild)
	{
	var win;
	win = window.open("", 'galerie', 'width=500, height=500, toolbar=no,location=no, status=no, menubar=no, scrollbars=yes, resizable=yes,');
	win.document.write("<html><head><title>Bildansicht</title></head>");
	win.document.write("<body bgcolor=#FFFFFF text=#000000 link=#0066CC vlink=#999999 alink=#996600 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
	win.document.write("<table width=99% border=0 cellspacing=0 cellpadding=3 height=99% align=center>");
	win.document.write("<tr><td align=center valign=middle>");
	win.document.write("<a href=javascript:self.close();><img src=" + bild + " border=1></a>");
	win.document.write("</td></tr><tr><td align=center valign=bottom>");
	win.document.write("<a href=javascript:self.close(); style='font-size: 10px; font-family: Arial, Helvetica, sans-serif;'>Fenster schliessen</a>");
	win.document.write("</td></tr></table></body></html>");
	win.document.close();	
}
function open_window_bigger(bild)
	{
	var win;
	win = window.open("", 'galerie', 'width=600, height=550, toolbar=no,location=no, status=no, menubar=no, scrollbars=yes, resizable=yes,');
	win.document.write("<html><head><title>Bildansicht</title></head>");
	win.document.write("<body bgcolor=#FFFFFF text=#000000 link=#0066CC vlink=#999999 alink=#996600 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
	win.document.write("<table width=99% border=0 cellspacing=0 cellpadding=3 height=99% align=center>");
	win.document.write("<tr><td align=center valign=middle>");
	win.document.write("<a href=javascript:self.close();><img src=" + bild + " border=1></a>");
	win.document.write("</td></tr><tr><td align=center valign=bottom>");
	win.document.write("<a href=javascript:self.close(); style='font-size: 10px; font-family: Arial, Helvetica, sans-serif;'>Fenster schliessen</a>");
	win.document.write("</td></tr></table></body></html>");
	win.document.close();	
}