function Check(){
$("#choose-button").attr('disabled','disabled');
$("#choose-from-box input").each(function(i){
if ($(this).attr('checked') == true){
$("#choose-button").attr('disabled','');
}
});
} 

function chooseResult()
	{
	var first=$('#first').is(':checked');
	var second=$('#second').is(':checked');
	var third=$('#third').is(':checked');
	var fourth=$('#fourth').is(':checked');
	var fifth=$('#fifth').is(':checked');
	var sixth=$('#sixth').is(':checked');
	var seventh=$('#seventh').is(':checked');
	var eight=$('#eight').is(':checked');
	var ninth=$('#ninth').is(':checked');
	var tenth=$('#tenth').is(':checked');
	var eleventh=$('#eleventh').is(':checked');
	
		if(first==true || third==true || eight==true || ninth==true){
		$("#helpChoose").hide();
		$("#showFolderlock").show();
		}
		
		if(second==true){
		$("#helpChoose").hide();
		$("#showUSBSecure").show();
		}
		
		if(fourth==true){
		$("#helpChoose").hide();
		$("#showUSBBlock").show();
		}
		
		if(fifth==true){
		$("#helpChoose").hide();
		$("#showCopyProtect").show();
		}
		if(sixth==true){
		$("#helpChoose").hide();
		$("#showiPhoneFl").show();
		}
		if(seventh==true){
		$("#helpChoose").hide();
		$("#showFolderProtect").show();
		}
		
		if(tenth==true){
		$("#helpChoose").hide();
		$("#showHistoryClean").show();
		}
		
		if(eleventh==true){
		$("#helpChoose").hide();
		$("#showMacroKeys").show();
		}
	}
