// JavaScript Document
function Change_Color_Over(TD_Id)
{
document.getElementById(TD_Id).style.background="#990033";
}

function Change_Color_Out(TD_Id)
{
document.getElementById(TD_Id).style.background="#7F1110";
}

function Display_Layer(Id)
{
document.getElementById('Header').style.display='block'
document.getElementById(Id).style.display='block'
}

function newWindow(where,name)
{
window.open(where,name,"scrollbars=yes,resizable=yes");
}

function Go_To_Link()
{
x=document.frmSiteMap.URL.selectedIndex	
if(x!=0)
  {
  URL=document.frmSiteMap.URL.options[x].value
  location.href=URL
  }
}