<!--
//Used in the Good Shepherd's Studio (http://www.goodshepherdstudio.org)

function eventpopup(mylink, windowname)
  {
  if(!window.focus)
    return true;

  var href;
  if(typeof(mylink) == 'string')
    href=mylink;
  else
    href=mylink.href;
  window.self.name="mainparent";
  window.open(href, windowname, 'width=575,height=400,scrollbars=yes');
  return false;
  }
function eventpopupwh(mylink, windowname, w, h)
  {
  if(!window.focus)
    return true;

  var href;
  if(typeof(mylink) == 'string')
    href=mylink;
  else
    href=mylink.href;
  window.self.name="mainparent";
  window.open(href, windowname, 'width='+w+',height='+h+',scrollbars=yes');
  return false;
  }
//-->