function popUp(URL) {
    if (screen) {
        y=(screen.height-520)/2
		x=(screen.width-480)/2
    }

    window.open(URL,'xxx','scrollbars=no,width=480,height=520,screenX='+x+',screenY='+y+',top='+y+',left='+x);
}
