/* author: Ujlaki Laszlo */
/* creation date: 2000.11.22. */

  function snowshow( im, wi, he, sp, ti ) {
    var w = wi + 100; var h = he + 100
    var snowwin = open( "", "snowwin", "width=" + w + ",height=" + h + ",status=no,location=no" );
    snowwin.document.write( "<html>\n  <head>\n    <title>" + ti + "</title>\n" );
    snowwin.document.write( "  <style>\n    a { font-family: Verdana, Arial, Sans Serif, Helvetica; text-decoration: none }\n" )
	snowwin.document.write( "    a:hover { text-decoration: underline }\n  </style>\n" );
    snowwin.document.write( "  </head>\n  <body>\n" );
    snowwin.document.write( "    <br>\n    <center>\n" );
	snowwin.document.write( "      <applet code='snow.class' width=", wi, " height=", he, ">\n" );
	snowwin.document.write( "        <param name=image value='", im, "'>\n" );
	snowwin.document.write( "        <param name=strength value=", sp, ">\n" );	
    snowwin.document.write( "      </applet>\n" );
    snowwin.document.write( "      <br><br>\n      <a href='javascript:void(0)' onClick='self.close()'>Csukjuk be az ablakot, esik a hó!</a>\n" );
    snowwin.document.write( "    </center>\n" );	
    snowwin.document.write( "  </body>\n</html>\n" );
    snowwin.document.close();
	snowwin.focus();
  }

