<!--
var bildwindow;

function bildload(imgsrc,format,titel,detail){
  var path, breite, hoehe, imgb, imgh;
  
/* mögliche Bildformate des Scripts:

"q" = (normales) querformat unserer seite; bildmaße: 680x510
"h" = (normales) hochformat unserer seite; bildmaße: 390x520
"wq" = querformat woschitz; bildmaße: 772x539
"wh" = hochformat woschitz; bildmaße: 539x773

##########     sonstige Handhabung selbsterklärend ;)     ##########
*/
  
  if(bildwindow){  if(bildwindow.closed != true) bildwindow.close();}
    
  if(format=="q"){ breite=680; hoehe=530; imgb=680; imgh=510}
  else if(format=="h"){ breite=390; hoehe=540; imgb=390; imgh=520}
  else if(format=="wq"){ breite=772; hoehe=560; imgb=772; imgh=539}
  else if(format=="wh"){ breite=539; hoehe=790; imgb=539; imgh=773}
  else{ var splitter=format.split("x"); imgb=splitter[0]; imgh=splitter[1]; breite=imgb; hoehe=parseInt(imgh)+20; }
  
  var posx=screen.width/2-breite/2; var posy=screen.height/2-hoehe/2;
  
  for(var i=imgsrc.length-3; i>=0; i--){
	if(imgsrc.substr(i,3)=="../"){ path=imgsrc.substring(0,i+3); break;}
  }
  
  bildwindow = window.open("about:blank","Bild","width="+breite+", height="+hoehe+", menubar=no, location=no, scrollbars=no, status=no, toolbar=no, resizable=no, dependent=yes");
  bildwindow.moveTo(posx, posy);
  bildwindow.document.writeln("<html>");
  bildwindow.document.writeln("<head>");
  bildwindow.document.writeln("<title>"+titel+"</title>");
  bildwindow.document.writeln("<link href='"+path+"styles/bilder.css' rel='stylesheet' type='text/css'>");
  bildwindow.document.writeln("</head>");
  bildwindow.document.writeln("<body>");
  bildwindow.document.writeln("<table width='"+imgb+"' height='100%' border='0' cellspacing='0' cellpadding='0' style='position: relativ; left: 0px; top: 0px; margin: 0px; padding: 0px'>");
  bildwindow.document.writeln("<tr><td style='vertical-align: middle; margin: 0px; padding: 0px'>");
/*  bildwindow.document.write("<script language='javascript' type='text/JavaScript' src='"+path+"scripts/bilder.js'>");  bildwindow.document.writeln("</script>");*/
  bildwindow.document.writeln("<img src="+imgsrc+" alt='"+titel+"\n[Klicken zum Schließen]' width="+imgb+" height="+imgh+" onClick='window.close()'>");
  bildwindow.document.writeln("<p>"+detail+"</p>");
  bildwindow.document.writeln("</td></tr>");
  bildwindow.document.writeln("</table>");
  bildwindow.document.writeln("</body>");
  bildwindow.document.writeln("</html>");
}


//-->