function faqToggle(show, amount)
{
	 for (xx =1 ;xx<=amount ; xx++){
document.getElementById("question"+xx).style.display = "none"; 
	}
	 
if (this.wwShow != show ) {
document.getElementById("question"+show).style.display = "block";
}else {show=0;
} 
this.wwShow=show; 


}