function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

var w = window;

function openWin(url) {
  if ((w == window) || w.closed) { w = open(url,"large","width=750,height=580,scrollbars=yes,resizable=yes"); }
  else {  w.focus(); w = open(url,"large","width=750,height=580,scrollbars=yes,resizable=yes");  }
  return(false);
}