function popupChat() {
win=window.open("http://ja.gamigo.de/chat/popup.php","IRC","resizable=yes,scrollbars=yes,width=600,height=320")
}
function send()
{
if (document.UserInfo.NICKNAME.value == null ||
document.UserInfo.NICKNAME.value == "")
{
window.alert("You must enter your nick name.")
return false
}
var USERNICK = document.UserInfo.NICKNAME.value
if(document.URL.search(/popup.shtml$/) == -1)
win=window.open("about:blank","IRC","resizable=yes,width=600,height=420")
else
var win=window;
win.document.write('
JA2-Basis IRC Chat')
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
}