function openWindow(url, width, height) {
 openNamedWindow(url, width, height, "Gary_Feldman_Property_Virtual_Tour");
}

function openNamedWindow(url, width, height, name) {
  var sFeatures = "top=50,left=50,height=" + height + ",width=" + width + ",status=yes,scrollbars=yes,resizable=1,menubar=no";
  var win = window.open(url,name,sFeatures);
  if (win != null) {
   	win.focus();
   	win.resizeTo(width, height);
  }
}

