function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function popUp(url, myWidth, myHeight)
{
        newwindow=window.open(url,'name','top='+Math.floor(screen.height/2-myHeight/2)+',left='+Math.floor(screen.width/2-myWidth/2)+',height='+myHeight+',width='+myWidth);
		if (window.focus) {newwindow.focus()}
        return false;
}

