var wstat
var ns4up = (document.layers) ? 1 : 0
var ie4up = (document.all) ? 1 : 0
var xsize = screen.width
var ysize = screen.height
var breite=900
var hoehe=680
var xpos=(xsize-breite)/2
var ypos=(ysize-hoehe)/2

function openchat() {
wstat=window.open("http://www.qpeople.de/chat.php","","scrollbars=no,status=no,toolbar=no,location=no,directories=no,resizable=no,menubar=no,width="+breite+",height="+hoehe+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos)
}

function privatchat(userid) {
wstat=window.open("http://www.qpeople.de/privatchat.php?userid="+userid ,"","scrollbars=no,status=no,toolbar=no,location=no,directories=no,resizable=no,menubar=no,width="+breite+",height="+hoehe+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos)
}

function privatchat_join(room) {
wstat=window.open("http://www.qpeople.de/privatchat.php?roomid="+room ,"","scrollbars=no,status=no,toolbar=no,location=no,directories=no,resizable=no,menubar=no,width="+breite+",height="+hoehe+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos)
}

function selectWert(sObj) {
    with (sObj) return options[selectedIndex].value;
  }