var boardname="Brunchma.com"; //name of your iB board
var chatroom="tribrunchma"; //name of your chatroom (usually same as the name of your board)
var server="irc.brunchma.com"; //IRC server
var port="6667"; //IRC port (usually 6667)
var warning="If you continue, the IRC chat will close."; //warning that pops-up upon exiting the chat

function setjs() {

 if(navigator.product == 'Gecko') {

   document.loginform["interface"].value = 'mozilla';
 }else if(navigator.appName == 'Microsoft Internet Explorer' &&

 window["ietest"] && window["ietest"].innerHTML) {
   document.loginform["interface"].value = 'ie';
 }else if(window.opera) {

   document.loginform["interface"].value = 'opera';
 } else {
   document.loginform["interface"].value = 'nonjs';
 }
}


function nickvalid() {
   var nick = document.loginform.Nickname.value;
   if(nick.match(/^[A-Za-z0-9\[\]\{\}^\\\|\_\-`]{1,32}$/))
      return true;
   document.loginform.Nickname.value = nick.replace(/[^A-Za-z0-9\[\]\{\}^\\\|\_\-`]/g, '');
   return false;
}

//

