function zoom(objekt,w,h) {
       //objekt = "../images/zoomImg/"+objekt;
        //var fx = screen.width;
        //var fy = screen.height;
        var breite = parseInt(w)+4;
        var hoehe = parseInt(h)+24;
        
		if (newWin = window.open('','BILD','width='+breite+',height='+hoehe+',left=0,top=0,scrollbars=0')) {

			newWin.document.open();
			newWin.document.write('<html><head><title>KAY INTERNATIONAL</title><link href="/styles/kay.css" rel="stylesheet" type="text/css"></head><body bgcolor="#222071" scroll="no">');
			newWin.document.write('<table width="100%" height="100%"><tr><td align="center" valign="middle">');
			newWin.document.write('<img src="'+objekt+'" alt="Kay International Gallery" border="0">');
			newWin.document.write('</td></tr><tr><td style="font-size:11px; height:18px; background-color:#eeeeee;" align="center"><a href="javascript:self.close()">Fenster schliessen / close window</a></td></tr></</table>');
			newWin.document.write('</body></html>');
			newWin.document.close();
	
			newWin.focus();
			
		} else {
			
			alert('Dieses Bild wird in einem PopUp Fenster angezeigt.\nDeaktivieren Sie bitte Ihren PopUp Blocker.');
			
		}
}
