function Hilite(el)
{
 el.style.backgroundColor='#F3F5F8';
 el.style.cursor='hand';
 el.style.color='#993300';
 self.status=el.title;
}

function Dehilite(el)
{
 el.style.backgroundColor='#239AD2';
 el.style.color='#DCF3FB';
 self.status='';
}

function Openurl(lnk)
{
  top.window.location=lnk;
}


