/*
	$Id$
*/

function DisplayTopSiteDiv(pSiteId, pType)
{
    // show or hide?
    if(pType == 'big')
    {
        var tohide = 'small';             
    }
    else if(pType == 'small')
    {
        var tohide = 'big';
    }
    
    // find div to hide
    document.getElementById('topsite_'+ tohide + '_' + pSiteId).style.display = 'none';

    // find div to show
    document.getElementById('topsite_'+ pType + '_' + pSiteId).style.display = '';    
}