/*GUI Functions*/
function showHide(id){
	var obj = document.getElementById(id);
	if(obj.style.display == 'none' || obj.style.display == ''){
		obj.style.display='block';
	}
	else{
		obj.style.display='none';
	}
}	
function showHideFAQ(obj,id){
	if(obj.style.fontWeight=='' || obj.style.fontWeight=='normal'){
		obj.style.fontWeight='bold';
	}
	else{
		obj.style.fontWeight='normal';
	}
	showHide(id);
}

