//http://htmlkurs.kleinedowe.de/inhaltsverzeichnis.php
function Zeigen(Bild0,Breite0,Hoehe0,Text0)
{
   Bild = Bild0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   Txt = Text0

   sichtbar()
}

function sichtbar(){

   Fenster_Hoehe = Hoehe + 100;
   Fenster_Breite = Breite + 50;

  Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1, left=0,top=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;

  neues_Fenster = window.open('','',Optionen)

  with (neues_Fenster)
   {
//   document.writeln(Bild);
//      document.writeln(Breite);
//	     document.writeln(Hoehe);
//		    document.writeln(Txt);
    document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><HTML><HEAD><TITLE>Bilder</TITLE><link rel="stylesheet" type="text/css" href="css/my_layout.css"></HEAD>');
    document.writeln('<BODY style="margin: 10" >');
    document.writeln('<div align="center">');
    document.writeln('<IMG SRC="'+Bild+'" WIDTH='+(Breite)+' HEIGHT='+(Hoehe)+' BORDER=0 ALT="'+Bild+'">');
    document.writeln('<br><p>'+Txt+'</p><h3><a href="javascript:self.close()">Fenster schlie&szlig;en</a></h3>');
    document.writeln('</div></BODY></HTML>')
	document.close();
   }
}

function mail(email,server,text)
{
with ( document )
	{
//	writeln(email);
//	writeln(server);
//	writeln(text);
	write('<a href=\"mailto:' + email + '@' + server +'\">');
	write(text+'</a>');
	}
}
function lae()
{
	with ( document )
	{
	writeln ("Letzte &Auml;nderung: ", lastModified);
	}
}
//  End -->

