/*
 * JS File provides functions for debug system
 *
 * @author Jan Byška <www.svofrcomputers.cz>
 * @copyright All right reserved
 * @version 1.0
 */

function showFnc(fnc_id){
	var image = document.getElementById('img_'+fnc_id);
	if (image.alt == 'SHOW'){
		image.src='images/system/icons/minus.png';
		image.alt = 'HIDE';
	}else{
		image.src='images/system/icons/plus.png';
		image.alt = 'SHOW';
	}
	$('#fnc_'+fnc_id).toggle(300);
}
