function HeaderOnMouseOver(theHeader, aClassName)
{
    var theHeaderID = theHeader.id;
    $get(theHeaderID).className = aClassName;
    //$get(theHeaderID).style="cursor: pointer; cursor: hand;"
}

function HeaderOnMouseOut(theHeader, aClassName)
{
    var theHeaderID = theHeader.id;
    $get(theHeaderID).className = aClassName;

}


function Expando(theObjectID, ContentID, TitleID) {
    theObject = $get(theObjectID);
    $get(ContentID).style.display = 'block';
    theObject.onclick = function() { Contracto(theObjectID, ContentID, TitleID); }
    theObject.src = "/Scitools/Images/general/Collapse_Off.gif";
    theObject.onmouseover = function() { this.src = '/Scitools/Images/general/Collapse_On.gif'; }
    theObject.onmouseout = function() { this.src = '/Scitools/Images/general/Collapse_Off.gif'; }
    theObject.alt = "Click to Collapse";
    if (TitleID != "") {
        $get(TitleID).onclick = function() { Contracto(theObjectID, ContentID, TitleID); }
    }    
}
function Contracto(theObjectID, ContentID, TitleID) {
    theObject = $get(theObjectID);
    $get(ContentID).style.display = 'none';
    theObject.src = "/Scitools/Images/general/Expand_Off.gif";
    theObject.onclick = function() { Expando(theObjectID, ContentID, TitleID); }
    theObject.onmouseover = function() { this.src = '/Scitools/Images/general/Expand_On.gif' }
    theObject.onmouseout = function() { this.src = '/Scitools/Images/general/Expand_Off.gif' }
    theObject.alt = "Click to Expand";
    if (TitleID != "") {
        $get(TitleID).onclick = function() { Expando(theObjectID, ContentID, TitleID); }
    }
}




//  End -->
