var xmlHttpQuestions
function showFAQQuestions()
{
	
	
	xmlHttpQuestions=GetXmlHttpObject3()

	if (xmlHttpQuestions==null)

	{

		alert ("Browser does not support HTTP Request")

		return

	} 

	var url="php/showFAQQuestions.php"


	url=url+"?stid="+Math.random()

	xmlHttpQuestions.onreadystatechange=stateChanged3 

	xmlHttpQuestions.open("GET",url,true)

	xmlHttpQuestions.send(null)

} 



function stateChanged3() 

{ 

	if (xmlHttpQuestions.readyState==4 || xmlHttpQuestions.readyState=="complete")
	{	
		document.getElementById("FAQtxtQuestions").innerHTML=xmlHttpQuestions.responseText
		
		var fid = document.getElementById("fid").value;
		var totNum = document.getElementById("totNum").value;
		showFAQAnswer(1, fid,0, totNum);
		
		var wndo = new dw_scrollObj('faqContent', 'lyr1Faq');
    	wndo.setUpScrollControls('scrollbarHtAdj');
		wndo.setUpScrollControls('scrollbarHtAdj', true, 'v');
	} 

} 



function GetXmlHttpObject3()

{ 

	var objXMLHttp=null

	if (window.XMLHttpRequest)

	{

		objXMLHttp=new XMLHttpRequest()

	}

	else if (window.ActiveXObject)

	{

		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")

	}

	return objXMLHttp

} 

