﻿// JScript File

function ShowSettings(tbl)
{
    var objShowhide = document.getElementById(tbl);    
    if(objShowhide.style.display == 'none')
    {
        objShowhide.style.display = 'block';
        objShowhide.previousSibling.style.backgroundImage = 'url(images/min.gif)';
    }
    else
    {
        objShowhide.style.display = 'none';
        objShowhide.previousSibling.style.backgroundImage = 'url(images/max.gif)';
    }
}
