function centerPopUp(url,name,height,width){
newWin = null
var winWidth = (screen.width-width)/2;
var winHeight = (screen.height-height)/2;
features='height='+height+',width='+width+',top='+winWidth+',left='+winHeight+',scrollbars=yes,toolbar=yes,location=no,status=yes,menubar=no,resizable=no';
newWin=window.open(url,name,features)
if (window.focus) {newWin.focus()}
}
function forumOpen(url,name){
newWin = null
features='height=400,width=400,scrollbars=yes,toolbar=no,location=no,status=yes,menubar=no,resizable=yes';
newWin=window.open(url,name,features)
if (window.focus) {newWin.focus()}
}