var openWindow = null;
function MM_openWindow(url,bildname,x,y)
{
    properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,menubar=no";
    openWindow = window.open('window.html','openWindow','width='+ x +", " + 'height='+ y +", "+ properties);
    openWindow.document.open();
    openWindow.document.write('<HTML>\n<HEAD>\n<TITLE>'+bildname+'</TITLE>\n');
    openWindow.document.write('<link rel="stylesheet" type="text/css" href="style.css">\n</HEAD>\n');
    openWindow.document.write('<BODY>\n<div align="center">\n');
    openWindow.document.write('<br><A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" alt="Zum Schliessen ins Bild klicken!" class="bildrahmen"></A>\n');
    openWindow.document.write('</div>\n');
    openWindow.document.write('</BODY>\n</HTML>');
    openWindow.document.close();
    openWindow.focus();
}


