
/* Highlight & Link DIVs */
function HighlightMouseover(text)
{
   text.style.background='#eee';
   text.style.cursor='pointer';
}
function HighlightMouseover2(text)
{
   text.style.background='#ccc';
   text.style.cursor='pointer';
}

function HighlightMouseout(text)
{ 
   text.style.background='';
}

function GotoUrl(url)
{
  top.location.href=url; 
}

