function popUp(url,width,height) {
x=(screen.width-width)/2;
y=(screen.height-height)/2;
var Win =   window.open(url, 'portfolio','left='+x+',top='+y+',width='+width+',height='+height+',menubar=0');
}