<!-- Hiding

function WinOpen( myref, wi, he) 
{
   msg = window.open( "", 'GusiWindow',  "resizable=yes, toolbar=no, directories=no, menubar=no, scrollbars=yes, left=1, top=1, width=" + wi + ", height=" + he);
   msg.close( );
   msg = window.open( "", 'GusiWindow',  "resizable=yes, toolbar=no, directories=no, menubar=no, scrollbars=yes, left=1, top=1, width=" + wi + ", height=" + he);
   msg.document.write( "<HEAD><TITLE>&nbsp;</TITLE></HEAD>");
   msg.document.write( "<BODY bgcolor='#1B1BAA'>");
   msg.document.write( "<CENTER><table>");
   msg.document.write( "<tr>");
   msg.document.write( "<td>");
   msg.document.write( "<img src =" + myref + " border=0>");
   msg.document.write( "</td>");
   msg.document.write( "</table></CENTER>");
   msg.document.write( "</BODY>");
}

function WinOpenFull( myref, title, wi, he) 
{
   msg = window.open( "", 'GusiWindow',  "resizable=yes, toolbar=no, directories=no, menubar=no, scrollbars=yes, left=1, top=1, width=" + wi + ", height=" + he);
   msg.close( );
   msg = window.open( "", 'GusiWindow',  "resizable=yes, toolbar=no, directories=no, menubar=no, scrollbars=yes, left=1, top=1, width=" + wi + ", height=" + he);

   msg.document.write( "<html><head><title>" + title + "</title>");

   msg.document.write( "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\"></head>");

   msg.document.write( "<frameset frameborder=\"NO\" border=\"0\" framespacing=\"0\" cols=\"*\">");
   msg.document.write( "<frame name=\"gFrame\" scrolling=\"NO\" noresize src=\"" + myref + "\">");
   msg.document.write( "</frameset>");
   msg.document.write( "<noframes><body bgcolor=\"#1B1BAA\">");
   msg.document.write( "</body></noframes>");
   msg.document.write( "</html>");
}

function StatusText( SText)
{
  window.status=SText;
}

function WyslijForm( form, actioncontrol, action)
{
  eval( "document." + form + "." + actioncontrol + ".value='" + action + "'");
  eval( "document." + form + ".submit()");
}
// -->
