function pic(w,h,path)
{
var bild = window.open("about:blank","Bild","width="+w+",height="+h+",top=140,left=400");
bild.document.write('<html><head><title>vergr&ouml;&szlig;ertes Bild</title><link rel="stylesheet" type="text/css" href="format.css"></head><body bgcolor="#ffffff"><div><a href="javascript:self.close()"><img src='+path+' width='+w+' height='+h+' border="0" alt="Fenster schlie&szlig;en"></a></div></body></html>');
bild.document.close();
bild.focus();
}
