function n_over(cell,link,newColour) {  

    var theColor = "#FFFFFF";
    if (!newColour) newColour = theColor;
    if (link) {
        link.oldColor = link.style.color;   
        link.style.color='red';       
        if (link.status) {
            window.status = link.status;   
        }
    }
    if (cell) {
        cell.style.cursor="hand";
        cell.oldColor = cell.style.backgroundColor; 
        cell.style.backgroundColor = newColour;
		cell.style.color = '#FFFFFF'
		
    }
    return true;
}

function n_out(cell,link) {
    if (link) {
        link.style.color = link.oldColor;
        link.style.cursor = "auto";
		
    }
    window.status="";
    if (cell) {
        cell.style.backgroundColor = cell.oldColor;
		cell.style.color = '#0F8D8C';
    }
    return true;
}
function gotoURL(url){
   window.location = url
}
function fontChange (td,color){

td.style.color = color; 

}
function fontChangeOut (td,color){

td.style.color = color; 

}