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=no,location=no,status=yes,menubar=no,resizable=no';
newWin=window.open(url,name,features)
if (window.focus) {newWin.focus()}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

