//<!--
// miscellaneous helper funtions

// see http://www.faqs.org/docs/htmltut/linking/linking_famsupp_71.html
// usage <A HREF="my.html" onClick="return popup(this, 'info')">my popup</A>
function popup(mylink, windowname)
{
  if (! window.focus)return true;
  var href;
  if (typeof(mylink) == 'string')
    href=mylink;
  else
    href=mylink.href;
  window.open(href, windowname, 'width=500,height=600,scrollbars=yes');
  return false;
}

function popup2(mylink, windowname)
{
  if (! window.focus)return true;
  var href;
  if (typeof(mylink) == 'string')
    href=mylink;
  else
    href=mylink.href;
  window.open(href, windowname);
  return false;
}

//--> end hide JavaScript
