function changeFAQ() {
    /*            if(document.getElementById('trAR').style.display == "none")
    {   
    document.getElementById('trFAQ').style.display = "";
    document.getElementById('closeFAQ').style.display = "";
    }    
    else
    {

            }*/

    ArrangeContent("trFAQ", "closeFAQ");
}

function CloseFAQ() {
    document.getElementById('trFAQ').style.display = "none";
    document.getElementById('closeFAQ').style.display = "none";

}

/*function loadXMLDoc() {
alert(3);
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
alert(4);
xmlhttp.onreadystatechange=function()
{
alert(5);
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert(xmlhttp.responseText);
document.getElementById("id_question").innerHTML=xmlhttp.responseText;
}
}
alert(6);
xmlhttp.open("GET","ajax_faq.txt",true);
xmlhttp.send();
}*/

function ViewFAQAnswer(QuesNo) {
    for (var i = 0; i < 6; i++) {
        var qId = "ques" + i;
        if (i == QuesNo)
            document.getElementById(qId).className = 'contentxt3';
        else
            document.getElementById(qId).className = 'contentxt1';
    }
    var i = 0;
    var arrANS = new Array();
    arrANS[0] = "(A) Please verify your outlet has not tripped&nbsp;-&nbsp;Reset your GFCI outlet<br/>(B) Confirm outlet is getting power&nbsp;-&nbsp;Your breaker box may have tripped and you will need to reset the breaker.<br/>(C) Verify if the Recycle Center is full of empty bottles. <br/>If none of the above brings you back on line, please contact Primo Customer Service at 877-266-5370.";

    arrANS[1] = "Primo will pick up your empty bottles at your next full service.<br/>In the interim you may wish to remove the extra bottles and place behind the full bottles on the display or to your pallet <br/>in the back (if you have one).";

    arrANS[2] = "Call Primo Customer Service at 877-266-5370 to request replacement or refurbishment of your <br/>equipment or signage.";

    arrANS[3] = "You may contact Primo Customer Service 24/7 at 877-266-5370.We will schedule a service <br/>delivery for you.";

    arrANS[4] = "Occasionally service may be moved within a two day window of your normal service date.<br/>If you require service to your store, please contact Primo Customer Service at 877-266-5370.";

    arrANS[5] = "Delivery service is based on your store sales history and information your store possibly shares with our corporate office.  Primo strives to make sure your display always has enough water to satisfy your customers' needs. If you are running low on inventory, please do not hesitate to contact Primo Customer Service at 877-266-5370.";

    /*arrANS[0] = "answer1";
    arrANS[2] = "answer2";
    arrANS[3] = "answer3";
    arrANS[4] = "answer4";*/


    document.getElementById('disp_ans').innerHTML = "<span class='pSmall_blue_italic' id='font_itfaq'>" + arrANS[QuesNo] + "</span>";

    /*			document.getElementById('ques0').className = "contentxt1";
    document.getElementById('ques1').className = "contentxt1";
    document.getElementById('ques2').className = "contentxt1";
    document.getElementById('ques3').className = "contentxt1";
    document.getElementById('ques4').className = "contentxt1";
    document.getElementById('ques5').className = "contentxt1";
    var quesid = "ques" + QuesNo;
    document.getElementById(quesid).className = "contentxt3";*/

    return false;
}

		
	
