				<!--
				function ToggleVisibility(questionA,forceExpand) {
					var clickedQuestion=$(questionA.parentNode);
					var clickedAnswer=clickedQuestion.next();
					if(clickedQuestion.length>0 && clickedAnswer.length>0)
					{
						if(!(forceExpand && clickedQuestion.hasClass("Expanded")))
						{
							clickedQuestion.toggleClass("Contracted");
							clickedQuestion.toggleClass("Expanded");
						}
						clickedAnswer.stop();
						clickedAnswer.css("height","auto");
						if(clickedQuestion.hasClass("Expanded")) {
							if(!(forceExpand && clickedAnswer.css("display")=="block")) {
								clickedAnswer.slideDown(100,function(){clickedAnswer.animate({opacity:1},{queue:false,duration:200,complete:function(){FixHeightAndFooter();}});});
							}
						}
						else  
							clickedAnswer.animate({opacity:0, height: 0},{queue:false,duration:200,complete:function(){$(this).hide();FixHeightAndFooter();}});
					}
				}
				function GotoQuestion(sId)
				{
					var expandedQuestion=$("a[name=qi"+sId+"]");
					if(expandedQuestion.length==1) {
						ToggleVisibility(expandedQuestion[0],true);
						var scrollPos=$(expandedQuestion[0]).offset().top;
						$("html").animate({ scrollTop: scrollPos},{queue:false,duration:1000});
					}
				}
				//-->