	var nwh = null;
	function showInfo(u) {
	
		hideInfo();
		document.getElementById(u).style.display = "";
		if(location.hash == "") location.href += "#selfaq";
	}
	
	function chkNewWindow() {
		if(nwh) {
			if(!nwh.closed)	{
				nwh = null;
				return true;
			}
		} else
			alert("A PopUp Blocker has prevented the information from displaying.\n\nPlease turn off your popup blocker or configure it so it allows popup windows to be displayed on this section of the web site, otherwise, you will not be able to see the information");
	}
	
	function hideInfo() {
		var d = document.getElementsByTagName("DIV");
		for(var i=0; i<d.length; i++)
			if(d[i].id.substr(0,3) == "inf") d[i].style.display = "none";
	}

	hideInfo();	
	
	window.name = "faqIndex";

