function toggleForm(){
	var f=d.getElementById("formFAQ");
	if(f.style.display=="none")f.style.display="block";
	else f.style.display="none";
}