  function showPage(url,width, height) {
    var left = (screen.width-width)/2;
    var top = (screen.height-height)/2;    
  
    window.open(url,'morePage','width='+width+',height='+height+',left='+left+',top='+top);
  }

