<!--
function faqToggle(iShow, iCount){
    for(var i = 1; i <= iCount; i++){
    	// Grab the Obj for Each Item;
    	var cID = document.getElementById("faq"+i);
    	// If the Obj Exists;
        if (cID) {
        	// Default All to Display: None;
        	var cDisplay = "none";
        	// Special Clause for The Item Clicked On;
        	if (i == iShow) {
        		// Allow Toggle Mechanism;
        		if (cID.style.display == "none") {
        			var cDisplay = "block";
        		}
        	}
        	// Set Display Value if Different;
        	if (cID.style.display != cDisplay) {
        		cID.style.display = cDisplay;
        	}
        }
    }
}
function new_window(url) {
	link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=500,height=340,left=140,top=120");
}
//-->
