<!--
function pop(link, wname)
  {
  if (! window.focus)
    {
    return true;
    }
  var href;
  if (typeof(link) == 'string')
    {
    href=link;
    }
  else
    {
    href=link.href;
    }
  window.open(href, wname, 'width=600,height=600,resizable=yes,status=no,scrollbars=yes');
  return false;
  }
  
function popmovie(link, wname)
  {
  if (! window.focus)
    {
    return true;
    }
  var href;
  if (typeof(link) == 'string')
    {
    href=link;
    }
  else
    {
    href=link.href;
    }
  window.open(href, wname, 'width=450,height=555,resizable=yes,status=no,scrollbars=no');
  return false;
  }
  
function added(link, wname)
  {
  if (! window.focus)
    {
    return true;
    }
  var href;
  if (typeof(link) == 'string')
    {
    href=link;
    }
  else
    {
    href=link.href;
    }
  win = window.open(href, wname, 'width=300,height=200,resizable=no,status=no,scrollbars=no');
  setTimeout("win.close()",1500);
  return false;
  }
//-->
