function OpenNewWindow(URL,winName,features) { //v2.0
  if( wdw != null && !wdw.closed )  wdw.close();
  wdw = window.open(URL,winName,features);
  wdw.moveTo(200,20)
}

function newWindow(URL) {
  popupWin = window.open(URL,'popup', 'scrollbars,resizable,width=800,height=600,left=5,top=5');
}

