
function inputNew() {
	if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
		document.getElementById(changingElement).innerHTML = xmlhttp.responseText;
	}
}

/*planplus faq category display functions*/
function getFaqCategory(cat,product) {
	var prodlink = "/fc/ajax_content.jsp?id=";

 	changingElement = "faq_holder";
	xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
	xmlhttp.onreadystatechange = inputNew;
	xmlhttp.open("get", prodlink+cat);
	xmlhttp.send(null);
}

