/**
 * @author Techlogix_1.19.1.4
 */
function showHideCategory(category_id,question_count)
{
	var i = 0;
	for(i=1;i<=question_count;i++)
	{
		var screen_category = document.getElementById('que_'+i+'_question_completed');
		var button_category = document.getElementById('que'+i+'_but');
//		alert(screen_category.id);
		if(i==category_id)
		{
			screen_category.style.display = "block";
			button_category.style.display ="block";
		}
		else
		{
			screen_category.style.display = "none";
			button_category.style.display ="none";
		}
	}
}
