
function over(cell)
{
    cell.style.cursor="hand";
    cell.style.backgroundColor="blue";
}

function out(cell)
{
    cell.style.backgroundColor="";
}

function goUrl(xurl)
{
    document.location.href = xurl
}

function firstWindow(page) 
{
    ElementWindow = window.open('popups/' + page,
    'FirstWin','width=700,height=500, resizable=no,status=no,toolbar=no, scrollbars=1');
}

function hideIt(topic) 
{
    if (document.getElementById(topic).style.display=="none")
    {     
        document.getElementById(topic).style.display="";
        document.getElementById('m' + topic).src="pics/ofolder.gif";
    }
    else
    {
        document.getElementById(topic).style.display="none"
        document.getElementById('m' + topic).src="pics/folder.gif";
    }
}





