function kreychat(theform, channel) {
	var object="/content/chat/popup_nickname.php?nick="+theform.nickname.value+"&channel="+channel;
	window.open(object,"javachat","width=645,height=600,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0");
}

function openchatbox(channel){
	var object="/content/chat/popup_nickname.php?channel="+channel;
	window.open(object,"javachat","width=645,height=600,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0");
}

function kreychat_html(theform, channel) {
   if (theform.nickname.value == "" || theform.nickname.value == "Schuilnaam") {
      nick = prompt("Geef hieronder je eigen schuilnaam/nick in, en druk op 'Ok'.\n");
      if (nick != null && nick != undefined) {
		theform.nickname.value = nick;
      } else {
		theform.nickname.value = "";
      }
   }
   var venster = window.open(('http://irc.chat.be/newchat/irc.cgi?interface=ie&Nickname=' + theform.nickname.value + '&Channel=%23' + channel ),'_blank','width=745,height=530,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0');

}

function frchat(theform, channel) {
   if (theform.nickname.value == "" || theform.nickname.value == "Pseudonyme") {
      nick = prompt("Veuillez entrer votre pseudonyme ici et cliquez sur 'Ok'.\n");
      if (nick != null && nick != undefined) {
		theform.nickname.value = nick;
      } else {
		theform.nickname.value = "";
      }
   }
   var venster = window.open(('http://irc.chat.be/fr/chat.php?nick=' + theform.nickname.value ),'_blank','width=800,height=600,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1');
}

function safechat(theform, channel) {
   if (theform.nickname.value == "" || theform.nickname.value == "Schuilnaam") {
      nick = prompt("Geef hieronder je eigen schuilnaam/nick in, en druk op 'Ok'.\n");
      if (nick != null && nick != undefined) {
         theform.nickname.value = nick;
      } else {
         theform.nickname.value = "";
      }
   }
   var venster = window.location=(('http://chat.be/safe/connect.php?nickname=' + theform.nickname.value + '&channel=' + channel ));
}

function openStats(channel){
	window.open('http://www.chat.be/chat/stats/index.php?kanaal='+channel,'channelinfo','width=800,height=600,toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=0,resizable=1,top=10,left=10');
	return false;
}

function popUp(URL, hoogte, breedte) {
        day = new Date();
        id = day.getTime();
        eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + breedte + ",height=" + hoogte + "')");
}