<!--
function zoom(imageName,imageWidth,imageHeight,koment,koment_v,obsah) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+(screen.availWidth-imageWidth)/2+",top="+(screen.availHeight-imageHeight)/2+"");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>Client & Partner</title><link REL="stylesheet" TYPE="text/CSS" MEDIA="screen" HREF="../m_css/rma.css"></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="javascript:self.close()">'); 
	newWindow.document.write('<table width="100%"><tr><td>&nbsp;</td></tr><tr><td>');
	newWindow.document.write('<a href="javascript:self.close()"><img src="'+imageName+'" border="0"></a>'); 
	newWindow.document.write('</td></tr><tr><td class="td_tenky_m">');
	newWindow.document.write(''+ koment +'');
	newWindow.document.write('</td></tr>');
	newWindow.document.write('<tr><td class="td_tenky_m">');
	newWindow.document.write(''+ koment_v +'');
	newWindow.document.write('</td></tr><tr><td align="right" class="td_tenky_m">');
	newWindow.document.write(''+ obsah +'');
	newWindow.document.write('</td></tr></table>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

//-->
