function wopen(url, name)
{
w = 732
h = 650
 var win = window.open(url,
  name, 
  'width=' + w + ', height=' + h + ', ' +
  'location=no, menubar=no, ' +
  'status=no, toolbar=no, scrollbars=no, resizable=no');
 win.resizeTo(w, h);
 win.focus();
 <!-- Center Window in the Middle of the Screen Based on Browser Size -->
 x = screen.width/2 - 366
 y = screen.height/2 - 325
 win.moveTo(x, y)
}
