function openWindow() {window.open("","win001",'width=680,height=760,scrollbars=yes');}
function openWindow_form() {window.open("","win001",'width=680,height=740,scrollbars=yes');}

function openWindow_map(url,winName) {
  window.name="MyWin";
  sw=screen.availWidth;
  sh=screen.availHeight;
  wl = (sw-680)/2;
  wt = (sh-760)/2;
  MyWin = window.open(url,"file","width=680,height=760,scrollbars=yes,resizable=yes,toolbar=yes,left=" + wl + ",top=" + wt);
  MyWin.focus();
};
