﻿// JScript File

//this is so scrolling appears smoother
function ScrollingSIFR(strAction, strContainerID)
{
    if (strAction == "Open" && document.getElementById(strContainerID).style.display == "none")
    {
        Effect.BlindDown(strContainerID);
        //setTimeout("ToggleTitle(true, '" + strContainerID + "')",1150);
    }
    else if (strAction != "Open")
    {
        //ToggleTitle(false, strContainerID);
        Effect.BlindUp(strContainerID);
    }
}

