//vergrössern von bildern
//diese funktion öffnet ein fenster und zeigt ein bild mit titel in
//der eingestellten grösse

function zeig_das_fenster()
{
   Fenster_Hoehe = Hoehe + 45;
   Fenster_Breite = Breite + 0;
   Optionen =
'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=1,resizable=0,left=200,top=100,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster)
   {  	document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE><link rel=stylesheet type="text/css" href="../css/style.css"></HEAD>');
      	document.writeln('<BODY topmargin="0" leftmargin="0" marginwidth=0 marginheight=0>');
      	document.writeln('<IMG SRC="'+Bild+'" HEIGHT='+Hoehe+' WIDTH='+Breite+' BORDER=0 ALT="'+Titel+'">');
	document.writeln('<div align="center">Photo&copy; by '+ copyinfo +'</div>');
	document.writeln('<div align="center"><a href="javascript:window.close();"><b>Fenster schließen</b></a></div>');
      	document.writeln('</BODY></HTML>')
   }
}

function Zeigen(Bild0,Titel0,Breite0,Hoehe0,Copyinfo0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   copyinfo = Copyinfo0;
   zeig_das_fenster()
}
