if (!document.layers&&!document.all) {event="test";}

function showtip(current,e,text)
{
  if (document.all)
  {
    thetitle=text.split('<br>')
    if (thetitle.length>1)
    {
      thetitles='';
      for (i=0;i<thetitle.length;i++)
      {
         thetitles+=thetitle[i];
      }
      current.title=thetitles
    }
    else {current.title=text;}
  }
  else if (document.layers)
  {
    document.linktips.document.write('<layer width="200" height="400">'+'<table width=100% height=100% border=0 align=right cellpadding=0 cellspacing=0 valign=bottom><tr><td align=right valign=bottom><table BORDER=0 CELLPADDING=0 CELLSPACING=0 bgcolor=#000000><tr><td><table width=100% BORDER=0 CELLPADDING=2 CELLSPACING=1><tr><td width=100% bgcolor="#FFFFEE" align=left valign=top><font style="font-family:arial; font-size:11px;">'+text+'</font></td></tr></table></td></tr></table></td></tr></table>'+'</layer>')
    document.linktips.document.close()
    document.linktips.left=e.pageX-205
    document.linktips.top=e.pageY-405
    document.linktips.visibility="show"
  }
}

function hidetip()
{
  if (document.layers) {document.linktips.visibility="hidden";}
}

function _popupWindow(URL,target, width, height)
{
 popup=window.open(URL,target,'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
 popup.focus();
 return true;
}

function _popupHelp(URL)
{
 popup=window.open(URL,"help",'width=778,height=500,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
 popup.focus();
 return true;
}