// #############################################
// # StarTrek Homepage    www.terok-nor.com    #
// # Copyright 1999-2003  Holger Ronecker      #
// #                      holger@ronecker.com  #
// #############################################

function Zeige_Bild(titel,img_alt,picture,x,y) {

  h = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no'
      + ',resizable=no,copyhistory=no,width=' + x + ',height=' + y);

  h.document.writeln('<html><title>' + titel + '</title><body bgcolor="black" leftmargin=0 topmargin=0>'
    + '<table cellpadding=0 cellspacing=0 border=0>'
	+ '<tr><td valign=center><a href="#" onClick="self.close();"><img border=0 src="' + picture + '" alt="' + img_alt + '"></a></td></tr>'
	+ '<tr><td height=5% valign=bottom align=right><font face="arial,helvetica,sans-serif" color="white" size="-2" >[ Zum Schlie&szlig;en Bild anklicken ]</font></td></tr>'
	+ '</table></body></html>');

  h.document.close();
}

