function Highlight(elem)
{
 elem.style.color='red';
 elem.style.fontWeight='bold';
}

function Dislight(elem)
{
 elem.style.color='#C40000';
 elem.style.fontWeight='normal';
}

function ShowLink(url)
{
 parent.main.location.href = url;
}