
:: Danke schon mal im Vorraus für eure Bemühungen ::
Code: Alles auswählen
function loadpic(url,titel,wWidth,wHeight) //Öffnet Bild in neuem popUp
{
wHeight = wHeight + 40;
popUp = window.open('','win','width='+wWidth+',height='+wHeight+',toolbar=no,location=no,directories=no,status=no,menubar=0,scrollbars=0,resizable=0,copyhistory=yes');
popUp.document.open();
popUp.document.writeln('<html><head><title>'+titel+'</title><link rel="stylesheet" type="text/css" href="design.css"></head>');
popUp.document.writeln('<body><img border="0" src="'+url+'"><br><center><a href="javascript:this.close()"><b>Fenster schließen</b></a></center></body></html>');
popUp.document.close();
}