// JavaScript Document
 function popup(co,hodnota){
  msg=window.open("", "Okno", "height=100px, width=300px, top=300px, left=500px, resizable=no, status=no, toolbar=no,location=no, scrollbars=no, resizable=no");
  msg.focus();
  msg.document.clear();
  msg.document.write('<html><head><title>Okno</title><META http-equiv="Content-Type" content="text/html; charset=windows-1250"><link rel="stylesheet" href="css/body.css" type="text/css"></head><body>');
  msg.document.write('<table width="100%" height="100%"><tr><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="obrazky/'+co+'.gif" alt="" width="40px" height="40px"></td><td valign="middle" align="left"><div style="padding:5px;color:#FFFFFF;font-weight:bold;font-size:18px">');
  msg.document.write(hodnota);
  msg.document.write("</div></td></tr></table></body></html>");
  msg.document.close();
}
