var win=null;
function irc(mode){
    x = (screen.availWidth - 800) / 2;
    y = (screen.availHeight - 600) / 2;
    myleft=20;
    mytop=20;
    settings="width=800,height=600,top=" + y + ",left=" + x + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no";
    if (mode == "java")
        win=window.open("special/jsirc/index.php","Deep Thought - JavaIRC",settings);
    if (mode == "web")
        win=window.open("http://webchat.quakenet.org/?nick=dtwow%7Cuser..&channels=Deep-Thought%2CDeep-Thought.support","Deep Thought - WebIRC",settings);
    win.focus();
}
onerror = stopError;
function stopError(){
    return true;
}