function zoom(pic,breite,hoehe)	 {
		    	  
		       		var zoom = open("", "zoom", "screenx=350,screeny=150,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width="+breite+",height="+hoehe+"");
		       		zoom.document.open();
		       		zoom.document.writeln('<html><head><title>zoom</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="window.focus();" bgcolor="#ffffff" text="#000000" link="#000000">');
		       		zoom.document.writeln('<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0" >');
		       		zoom.document.writeln(' <tr>');
		       		zoom.document.writeln('  <td><center><a href="javascript:window.close();"><img src="'+pic+'" border="0"></a></center></td>');
		       		zoom.document.writeln(' </tr>');
		       		zoom.document.writeln('</table>');
		       		zoom.document.writeln('</body></html>');
		       		zoom.document.close();
				
			}

