// JavaScript Document

<!--

function open_popup (url,w,h) {
  w = window.open(url, 'the_popup','resizable=no,status=no,scrollbars=yes,height=' + h + ',width=' + w);
  w.focus();
  if(w == null) return false 
  else return true;
}

-->