  function newWin(u) {
    popupWindow=open(u,'new_win','width=800,height=600,toolbar=1');
    if (popupWindow.opener == null) popupWindow.opener = self;
    if (window.focus) {popupWindow.focus()}
    return false;
  }


