<!--
var g_bGlowAllLinks = false;
var g_bGlowLinks    = false;
if(document.body)
{
 g_bGlowLinks = true;
}
if(g_bGlowLinks && g_bGlowAllLinks)
{
 document.body.onmouseover = gl_high;
 document.body.onmouseout  = gl_norm;
}
function gl_high()
//white
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#FFFFFF";
   }
  }
 }
}

function gl_high2()
//green
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#00FF66";
   }
  }
 }
}

function gl_high3()
//Gold
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#FFCC00";
   }
  }
 }
}

function gl_high4()
//Bright Red
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#FF3333";
   }
  }
 }
}

function gl_high5()
//Red
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#0099FF";
   }
  }
 }
}

function gl_high6()
//Blue
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#3399FF";
   }
  }
 }
}

function gl_high7()
//Gray
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#CCCCCC";
   }
  }
 }
}

function gl_high8()
//Lt Pink/Red
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "#FF9999";
   }
  }
 }
}

function gl_norm()
{
 if(g_bGlowLinks)
 {
  if(event && event.fromElement)
  {
   s = event.fromElement;

   if(s.style && ("A" == s.tagName))
   {
    s.style.color = s.oldcol;
   }
  }
 }
}

