<!--
  function popup(mylink, windowname)
  {
    if (! window.focus)return true;
    var href;
    if (typeof(mylink) == 'string')
      href=mylink;
    else
      href=mylink.href;
    var temp = window.open(href, windowname, 'width=475,height=375,scrollbars=no');
    temp.focus();
    return false;
  }
//-->