function WinOpen( myref, wi, he) 
{
   msg=window.open('', '','left=0, top=0, width='+wi+',height='+he+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
   msg.document.open();
   msg.document.write( "<html><HEAD><TITLE>&nbsp;Rysunek</TITLE></HEAD>");
   msg.document.write( "<BODY bgcolor='#F0F0F0' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
   msg.document.write( "<table width=100% height=100% border=0 cellpadding=0 cellspacing=0 align=center>");
   msg.document.write( "<tr valign=middle>");
   msg.document.write( "<td>");
   msg.document.write( "<CENTER><img src =" + myref + " border=0>");
   msg.document.write( "</td>");
   msg.document.write( "</table>");
   msg.document.write( "</BODY></html>");
   msg.document.close();
   msg.focus();
}