function startup() { }

function itemOn( objElem )
{ objElem.style.borderColor = "#00D000";
  objElem.style.backgroundColor = "#FFFFCC";
}

function itemOff( objElem )
{ objElem.style.borderColor = "";
  objElem.style.backgroundColor = "";
}

function elink( name, host, text )
{ var linkText = "";
  if ( text == "" )
  {
    linkText = name + "@" + host;
  }
  else
  {
    linkText = text;
  }
  document.write( "<a href=\"mailto:" + name + "@" + host + "\">" + linkText + "</a>" );
}

function show( id )
{ document.getElementById( id ).style.display = "block";
}
function hide( id )
{ document.getElementById( id ).style.display = "none";
}
function getDisplayValue( id )
{ return document.getElementById( id ).style.display;
}
function toggle( id )
{ if ( getDisplayValue( id ) == "none" )
  { show( id );
  }
  else
  { hide( id );
  }
}

function highlight( mode, id )
{ if ( mode == "on" )
  { document.getElementById( id ).style.backgroundColor = "#82D96C";
  }
  else
  { document.getElementById( id ).style.backgroundColor = "";
  }
}

