/** Copyright (c) 2010-2011 LLC «Alternative» (http://www.alt-team.com). All rights reserved.
*   This is commercial software, only users who have purchased a valid
*   license and accept to the terms of the License Agreement can install
*   and use this program.
*	
*   PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE
*   «helpdesk_copyright.txt» FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. **/

function fn_switch_block (id)
{
	$('.cm-switcher').hide();
        $('#' + id).show();

        return true;
}

function fn_check_switched_block (id)
{
       $('#' + id).show();

        return true;
}

