// Originalscript: Christine Kühnel, http://www.screenexa.net
// Anpassungen: Patrick Andrieu, http://www.atomic-eggs.com; Kai Ortelt. http://www.mindkick.de

Protokoll = self.location.protocol;
Pfad = self.location.pathname;
Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)
neues_Fenster = null;


function Show(Bild0,Titel0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   zu();
   setTimeout("sichtbar()",1000);
}


function sichtbar()
{  
   Fenster_Hoehe = Hoehe + 90;
   Fenster_Breite = Breite + 40;
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,screenX=10,screenY=10,left=10,top=10,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<html><head><title>' + Titel + '</title>');
      document.writeln('<bo'+'dy text="#000000" bgcolor="#ffffff" link="#666699" alink="#666699" vlink="#666699">');
	  document.writeln('<div align="center"><br><table border="0" cellspacing="0" cellpadding="0" valign="middle">');
	  document.writeln('<tr><td>');
      document.writeln('<img src="'+Bild+'" width="'+Breite+'" height="'+Hoehe+'" border="0" alt="'+Titel+'"></td>');
      document.writeln('</tr></table>');
      document.writeln('<p align="center">[&nbsp;<a href="javascript:self.close()" style="color:#CE5529; font-size:10pt; font-weight:bold; text-decoration:none; font-family:Verdana;">Schlie&szlig;en</a>&nbsp;]</p>');
      document.writeln('</div></bo'+'dy></html>');
      location.reload();
   }
}


function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
       neues_Fenster.close();
}


function DoubleFrames(URL1,F1,URL2,F2)
{
		parent.frames[F1].location.href=URL1;
		parent.frames[F2].location.href=URL2;
}