function popupChat() {
win=window.open("popup.html", "-M- LIVE - CHAT", "height=220,width=520");
}
function send()
{
if (document.UserInfo.NICKNAME.value == null ||
document.UserInfo.NICKNAME.value == "")
{
window.alert("Vous devez entrer un pseudo.")
return false
}
var USERNICK = document.UserInfo.NICKNAME.value
win=window.open("","IRC","resizable=no,height=370,width=825")
win.document.write('
-M- LIVE - CHAT')
win.document.write('')
win.document.write('')
win.document.write('')
win.document.write('')
win.document.write('')
win.document.close()
//document.location=document.referrer
//document.location="intro.html"
return true
}