function send()
{
   if (document.jirclogin.NICKNAME.value == null || document.jirclogin.NICKNAME.value == "")
   {
        window.alert("Nickname required!")
        return false
   }

var USERNICK = document.jirclogin.NICKNAME.value

 win=window.open("","JPIRC","resizable=no,height=430,width=620")
 win.document.write('<html><head><title>Loading chat ...</title>')
 win.document.write('<meta http-equiv="refresh" content="0; URL=chat/chat.php?nick='+USERNICK+'">')
 win.document.write('</head>')
 win.document.write('<body bgcolor=#EEEEEE>')
 win.document.write('<a href="chat/chat.php?nick='+USERNICK+'">CLick here, if you are not redirected...</a>')
 win.document.write('</body>')
 win.document.write('</html>')
 win.document.close()

 return true
}
