//****************************************************************************
// Copyright (c) 2005, Coveo Solutions Inc.
//****************************************************************************

function CNL_CollapsableRegion() {

//****************************************************************************
// Event handler for the onclick event of the Collapsed region.
//****************************************************************************
this.Collapsed_OnClick = function()
{
    this.m_Collapsed.style.display = 'none';
    if (this.m_NotCollapsed.innerHTML != '') { 
        this.m_NotCollapsed.style.display = 'block';
    }
    this.m_Collapsable.style.display = 'block';
    this.m_IsCollapsed.value = 'false';
}

//****************************************************************************
// Event handler for the onclick event of the NotCollapsed region.
//****************************************************************************
this.NotCollapsed_OnClick = function()
{
    if (this.m_Collapsed.innerHTML != '') { 
        this.m_Collapsed.style.display = 'block';
    }
    this.m_NotCollapsed.style.display = 'none';
    this.m_Collapsable.style.display = 'none';
    this.m_IsCollapsed.value = 'true';
}

} // Constructor

