<!--
function zoom(pic,w,h){
	var tresc='<html><head><title></title></head><body leftmargin=0 rightmargin=0 bottommargin=0 topmargin=0 marginheight=0 marginwidth=0><img src='+pic+' border=0 width='+w+' height='+h+'></body></html>';
	var okienko=window.open("","okno","width="+w+", height="+h);
	okienko.document.write(tresc);
	okienko.document.close();
	okienko.focus();
	return true;
}
//-->
