function send()
{
   if (document.jwirclogin.Nick.value == null ||
                                        document.jwirclogin.Nick.value == "")
   {
        window.alert("Nickname required!")
        return false
   }

var USERNICK = document.jwirclogin.Nick.value
var winleft = (screen.width - 520) / 2;
var winUp = (screen.height - 340) / 2;

 win=window.open("","JWIRC","resizable=yes,top="+winUp+",left="+winleft+",height=340,width=520")
 win.document.write('<html><head><title>Loading chat ...</title>')
 win.document.write('<link rel="stylesheet" href="cz.css" type="text/css">')
 win.document.write('<meta http-equiv="refresh" content="0; URL=http://www.ppx3k.com/chat/ppxchat.php?Nick='+USERNICK+'">')
 win.document.write('</head>')
 win.document.write('<body bgcolor=#EEEEDD leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">')
 win.document.write('<a class=BlueNormal   href="http://www.ppx3k.com/ppxchat.php?Nick='+USERNICK+'">CLick here, if you are not redirected...</a>')
 win.document.write('</body>')
 win.document.write('</html>')
 win.document.close()

 return true
}