﻿
// Highligh Item when mouse over
var catID = -1;
var classID = -1;

function HighlighBG(tbl,mode)
{
    if(mode == "over")
        tbl.style.backgroundColor = "#dbe6ec";
    else
        tbl.style.backgroundColor = "#f2f4f3";
}

function ChangeLinkStyle(lnk)
{
    if(lnk.style.textDecoration != 'underline')
        lnk.style.textDecoration='underline';
    else
        lnk.style.textDecoration='none';
}

function toggleMagnifier() {
    var mag = document.getElementById("Magnifier1");
    if (mag!=null) { 
            toggleFloatingPanelVisibility('Magnifier1'); 
    } else 
        alert("Magnifier is not available"); 
}

