/*function OpenFAQa(ID) {
	
	for(i=0;i<1000;i++)
	{
		var obj = document.getElementById("myFAQ"+i)
		if (obj !== null) {
			obj.style.visibility = "hidden"
			obj.style.display = "none"
		}
		var obj = document.getElementById("COLLAPSE"+i)
		if (obj !== null) {
			obj.src = "http://www.inhalesuite.com/image/plus.gif"
		}
	}
	
	
	var obj = document.getElementById("myFAQ"+ID)
	
	
	//------------
	if (obj.style.visibility == "visible") {
		obj.style.visibility = "hidden"
		obj.style.display = "none"
	}
	else {
		obj.style.visibility = "visible"
		obj.style.display = ""
	}
	var obj = document.getElementById("COLLAPSE"+ID)
		if (obj !== null) {
			obj.src = "http://www.inhalesuite.com/image/minus.gif"
		}
	
}
*/

function OpenFAQa(ID) {
	
	
	var obj = document.getElementById("myFAQ"+ID)
	
	
	//------------
	if (obj.style.visibility == "visible") {
		obj.style.visibility = "hidden"
		obj.style.display = "none"
		var obj = document.getElementById("COLLAPSE"+ID)
		if (obj !== null) {
			obj.src = "http://www.inhalesuite.com/image/faq_show.gif"
		}
	}
	else {
		obj.style.visibility = "visible"
		obj.style.display = ""
		var obj = document.getElementById("COLLAPSE"+ID)
		if (obj !== null) {
			obj.src = "http://www.inhalesuite.com/image/faq_hide.gif"
		}
	}
	
	
}




/*
//Hide all
			ANS_1.style.visibility = "hidden"
			ANS_1.style.display = "none"
			ANS_2.style.visibility = "hidden"
			ANS_2.style.display = "none"
			ANS_3.style.visibility = "hidden"
			ANS_3.style.display = "none"
			ANS_4.style.visibility = "hidden"
			ANS_4.style.display = "none"
			ANS_5.style.visibility = "hidden"
			ANS_5.style.display = "none"
			ANS_6.style.visibility = "hidden"
			ANS_6.style.display = "none"
			ANS_7.style.visibility = "hidden"
			ANS_7.style.display = "none"
			ANS_8.style.visibility = "hidden"
			ANS_8.style.display = "none"
			ANS_9.style.visibility = "hidden"
			ANS_9.style.display = "none"
			//ANS_10.style.visibility = "hidden"
			//ANS_10.style.display = "none"
			//ANS_11.style.visibility = "hidden"
			//ANS_11.style.display = "none"
			ANS_99.style.visibility = "hidden"
			ANS_99.style.display = "none"
		
			//Show only the one selected
			switch (ID) {
				case "ANS_1" :
					ANS_1.style.visibility = "visible"
					ANS_1.style.display = ""
					break;
				case "ANS_2" :
					ANS_2.style.visibility = "visible"
					ANS_2.style.display = ""
					break;
				case "ANS_3" :
					ANS_3.style.visibility = "visible"
					ANS_3.style.display = ""
					break;
				case "ANS_4" :
					ANS_4.style.visibility = "visible"
					ANS_4.style.display = ""
					break;
				case "ANS_5" :
					ANS_5.style.visibility = "visible"
					ANS_5.style.display = ""
					break;
				case "ANS_6" :
					ANS_6.style.visibility = "visible"
					ANS_6.style.display = ""
					break;
				case "ANS_7" :
					ANS_7.style.visibility = "visible"
					ANS_7.style.display = ""
					break;
				case "ANS_8" :
					ANS_8.style.visibility = "visible"
					ANS_8.style.display = ""
					break;
				case "ANS_9" :
					ANS_9.style.visibility = "visible"
					ANS_9.style.display = ""
					break;
				//case "ANS_10" :
				//	ANS_10.style.visibility = "visible"
				//	ANS_10.style.display = ""
				//	break;
				case "ANS_11" :
					ANS_11.style.visibility = "visible"
					ANS_11.style.display = ""
					break;
				case "ANS_99" :
					ANS_99.style.visibility = "visible"
					ANS_99.style.display = ""
					break;
				
			}*/