<!-- Begin to hide script contents from old browsers.

	function hideHelpIds()
	{	
		// start our loop for hiding all divs initially
        for (intQueCount=1;intQueCount<=intMaxQue;intQueCount++)
        {
			document.getElementById(intQueCount).style.display = "none";
			//alert(intQueCount);
        }
	}

	function showHelpId(helpid)
	{	
		if (document.getElementById)
		{
			//alert(helpid);
			if (helpid<1){helpid=1}					// If helpid is less than 1 then set it to 1
			if (helpid>intMaxQue){helpid=intMaxQue}	// If helpid is greater than max FAQ no. then set it to Max FAQ no.
			hideHelpIds()							// First hide all divs
			document.getElementById(helpid).style.display = "";	// Now only enable the relevant div
			var pageLoc								// to take to spcific question
			pageLoc="#help"+ helpid
			window.location=pageLoc
			//alert(pageLoc)
		}
	}
// End the hiding here. -->
