function popup(bildname, w, h) 
{ 
var hintergrundfarbe = "#ffffff"; 
var popup = window.open("","Popup","width="+w+",height="+h+",resizable=0,scrollbars=auto");

popup.document.write("<html><head><title>INTERNATIONAL ASSOCIATION of CIVIL AVIATION CHAPLAINS</title></head>"); 
popup.document.write('<body onBlur="self.close()" onClick="self.close()" bgcolor="'+hintergrundfarbe+'" leftmargin="0" rightmargin="0" topmargin="0">'); 
popup.document.write("<img src='"+bildname+"' border='0' alt=''>"); 
popup.document.write("</body></html>"); 
} 
