<!--

// popupWin (url,w,h) shows the page 'url' in a pop-up window
// 'w' pixels wide and 'h' pixels high, with scrollbars but no menu bars

function popupWin(url,w,h) {
  var popup = 
    open(url,'popup','width='+w+',height='+h+',resizable=yes,scrollbars=yes');
  popup.focus();
}

// -->


