/*
URL:	www.night-fever.net
Author:	Marcel Irmscher :: Copyright 2007 :: All Rights Reserved
*/


function popup(bildurl,b,h,bildtitel)
{
var optionen,fenster,b,h;

optionen = "left=0,top=0,width="+b+",height="+h+",menubar=no,toolbar=no,status=no";

fenster = window.open("","",optionen);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
  document.write("function click() { window.close(); } ");  // bei click  schliessen
  document.write("document.onmousedown=click ");
  document.write('</scr' + 'ipt>');
  document.write('<title>'+ bildtitel +'</title></head>');
  document.write('<' + 'body onblur="window.close();" ');// bei Focusverlust schliessen
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<img src="'+ bildurl +'"border="0">');
  document.write('</body></html>');
  fenster.document.close();
}
}

function openpics (Adresse)
{
  MeinFenster = window.open(Adresse, "Zweitfenster", "width=700,height=450,left=100,top=100,toolbar=no,menubar=no,status=no,location=no");
  MeinFenster.focus();
}

