/* Automatische PopUp Fenster-Funktion für Vorschaubilder   */
/* M.Hochmuth - 26.7.2006 - FB Maschinenbau - FH Regensburg */
/* Vorlage von http://www.netz-notizen.de/javascript/       */

Protokoll = self.location.protocol;
Pfad = self.location.pathname;
Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)
neues_Fenster = null;

function errorTrap() {return true;}
window.onerror = errorTrap;

function Zeigen(Bild0,Titel0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   zu();
   setTimeout("sichtbar()",100);
}

function sichtbar()
{  
   Fenster_Hoehe = Hoehe + 30;
   Fenster_Breite = Breite + 10;
   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)
   with (neues_Fenster) 
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.writeln('<BODY BGCOLOR="#FFFFFF" TEXT="#000000"><DIV ALIGN=CENTER>');
      document.writeln('<table style="cursor: hand" style="border: 1px #999999 dashed" width="100%" align="center" bgcolor="#ffffff" bordercolor="#FFFFFF" cellpadding="0" cellspacing="3" border="1"><tr><td onClick="JavaScript:self.close()"  valign="bottom" align="left" background="'+Bild+'" width='+Breite+' height='+Hoehe+' border=0 alt="'+Titel+'" style="background-image:url("'+Bild+'" width='+Breite+' height='+Hoehe+' border=0 alt="'+Titel+'"); background-repeat:no-repeat;"><img src="http://www.fh-regensburg.de/fk/m/images/schliessen.gif" alt="" width="120" height="26"><br><b><div align="center"></div></b></td></tr></table>');
	  document.writeln('</DIV></BODY></HTML>');
   }
}

function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
        if (neues_Fenster.close)
           neues_Fenster.close(); 
}