function changeColors(tablecell)
{
 tablecell.style.backgroundColor="#CCCCCC";
 tablecell.style.borderColor="#999999";
 var a = tablecell.all.tags("A");
 a[0].style.color="#0000ff";
}

function restoreColors(tablecell)
{
 tablecell.style.backgroundColor="#F1F1F1";
 tablecell.style.borderColor="#F1F1F1";
 var a = tablecell.all.tags("A");
 a[0].style.color="#000000";
}

function mouseClick(tablecell)
{
var a = tablecell.all.tags("A");
if (a.length > 0) top.location.href = a[0].href;
}

function toggleNews()
{
if (news.style.display=="block")
 {
  ntable.style.backgroundColor="#FFFFFF";
  news.style.display="none";
  toggle.innerHTML="<IMG SRC='/img/btn_dn.gif'>";
 }
else
 {
  ntable.style.backgroundColor="#EEEEEE";
  news.style.display="block";
  toggle.innerHTML="<IMG SRC='/img/btn_up.gif'>";
 }
}

function Init()
{
var rExp = /(MSIE)\s(\d+)\.(\d+)((b|p)([^(s|;)]+))?;?(.*(98|95|NT|3.1|32|Mac|X11))?\s*([^\)]*)/;
if (window.navigator.userAgent.match(rExp))
 {
  ntable.style.backgroundColor="#FFFFFF";
  news.style.display="none";
  toggle.innerHTML="<IMG SRC='/img/btn_dn.gif'>";
 }
}