// JavaScript Document
var oldnum = -1; 
function Showfaq(num)
{
	if (oldnum != num && oldnum > 0){
	document.getElementById("faq"+oldnum).style.display = "none";
	document.getElementById("span"+oldnum).src = "images/arrw08_40a.gif";
	}
	obj = document.getElementById("faq"+num)
	arr =  document.getElementById("span"+num)

	 if (obj.style.display == "block"){ 
		obj.style.display = "none";
		arr.src = "images/arrw08_40a.gif";
	 }
	 else
	 { 
		obj.style.display = "block";
		arr.src = "images/arrw08_40aup.GIF"; 
	 }
	 oldnum = num;
	
}

