﻿
function imagePopUp(img) {
  html = "<html><head><title>Bildanzeige</title>" + 
         "</head><body style='margin: 0px 0; text-align:center; '>" + 
         "<IMG SRC='" + img + "' BORDER=0 NAME=image " + 
         "onload='window.resizeTo(document.image. width,(20+document.image.height*1.3))'>" + 
         "<p>&nbsp;</p><a href='javascript:window.close();'>Schliessen</a>" +
         "</body></html>";
         
  popup=window.open ('','image',"toolbar=0,location=0, directories=0,menuBar=0, scrollbars=0,resizable=1,width=600,height=400");
  popup.document.open(); 
  popup.document.write(html);  
  popup.document.close() 
};
