function MM_openBrWindow(theURL,winName,features) { //v2.0
  winName = window.open(theURL,'',features);
  winName.moveTo(25,25);
}


Protokoll = self.location.protocol;
Pfad = self.location.pathname;
Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)
neues_Fenster = null;

function Zeigen(Bild0,Titel0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   zu();
   setTimeout("sichtbar()",10);
}

function sichtbar()
{  
   Fenster_Hoehe = Hoehe;
   Fenster_Breite = Breite;
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   neues_Fenster.moveTo((screen.width-Fenster_Breite)/2,(screen.height-Fenster_Hoehe)/2);
   with (neues_Fenster) 
   {
      document.writeln('<html><head><title>' + Titel + '</title>');
      document.writeln('<body style="background-color: #FFFFFF; margin: 0px;">');
      document.writeln('<a href="javascript:void(0);" onClick="javascript:window.close();"><img src="'+Bild+'" width='+Breite+' height='+Hoehe+' border=0 alt="'+Titel+'"></a>');
      document.writeln('</body></html>');
   }
}

function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
       neues_Fenster.close();
}


function werbung(theURL,winName,features) { //v2.0
  winName = window.open(theURL,'',features);
  winName.moveTo(25,25);
}

