function openWindow(url){
  var popWidth = 700, popHeight = 440
  window.open( url + ".html","_blank", "width = " + popWidth + ",height = " + popHeight + ",top = " + ((screen.height - popHeight)/2) + ",left =" + ((screen.width - popWidth)/2));
}

