
// PersistDisplay
//
// Persist an element's style=display:"none"|""
// through BACK/history navigation 
// via an accompanying form element.
//
// Usage:
//
// <div id="idContent">Elephant</div>
// <input type="hidden" id="idMarker" value="1"/>
// <script>
//		PersistDisplay.add('idContent', 'idMarker');
// </script>
//
// You may use a checkbox instead of input type="hidden".
//
//
// When showing/hiding these elements, just use
// 	PersistDisplay.show('idContent');
// OR
//		PersistDisplay.hide('idContent');
//

var PersistDisplay = new function()
{
	var hash = {};
	var fInited = false;

	// init
	// 
	// Add persist() to onload handler
	//
	this.init = function()
	{
		if (fInited) return;
		
		ourAttachEvent(window, "load", function(){PersistDisplay.persist();});

		fInited = true;
	}

	// add
	//
	// Add a content/form element pair to the list of persisting display items.
	//
	this.add = function( sIdContent, sIdInput )
	{
		this.init();
		hash[sIdContent] = sIdInput;
	}

	// show
	//
	// Show a content item and update its form element appropriately.
	//
	this.show = function( sIdContent ) 
	{
	    this.setVisible(sIdContent, true);
	}

	// hide
	//
	// Hide a content item and update its form element appropriately.
	//
	this.hide = function( sIdContent )
	{
		this.setVisible(sIdContent, false);
	}

	this.setVisible = function( sIdContent, fVisible )
	{
		if (!hash[sIdContent]) return;
		
		var oInput = document.getElementById(hash[sIdContent]);
		var oContent = document.getElementById(sIdContent);

		if (!oInput || !oContent) return;

		oContent.style.display = fVisible ? "" : "none";
		
		if (this.isRadio(oInput))
		{
			oInput.checked = fVisible;
		}
		else if (this.isInput(oInput))
		{
			oInput.value = fVisible ? "1" : "0";
		}
	}

	// persist
	//
	// Go through all necessary items and persist
	// their previous style:display values.
	//
	this.persist = function()
	{
		for( var key in hash )
		{
			var oInput = document.getElementById(hash[key]);
			var oContent = document.getElementById(key);

			if (!oInput || !oContent) continue;
			
			var fDisplay = true;
			
			if (this.isRadio(oInput))
			{
				fDisplay = oInput.checked;
			}
			else if (this.isInput(oInput))
			{
				fDisplay = oInput.value != "0";
			}

			oContent.style.display = fDisplay ? "" : "none";
			
			// hack to support tabs: if ID starts with
			// blk_, find id starting with tab_ and set its color
			
			if (/^blk\_/.test(key))
			{
			    var key2 = key.replace(/^blk\_/,"tab_");
			    var oTab = document.getElementById(key2);
			    oTab.style.backgroundColor = fDisplay ? '#f3f6f9' : '';
			    oTab.style.color = fDisplay ? '#000000' : '#444444';
			}
		}
	}

	this.isRadio = function( o )
	{
		var sNodeName = o.nodeName;
		var sNodeType = o.type
		if (!sNodeName || !sNodeType) return false;
		return sNodeName.toLowerCase() == "input" && sNodeType.toLowerCase() == "radio";
	}

	this.isInput = function( o )
	{
		var sNodeName = o.nodeName;
		var sNodeType = o.type
		if (!sNodeName || !sNodeType) return false;
		return 	sNodeName.toLowerCase() == "input" && 
					(sNodeType.toLowerCase() == "text" || sNodeType.toLowerCase() == "hidden");
	}
}

// ourAttachEvent
//
// X-browser event attachment, use as:
// ourAttachEvent(oMyElement, "click", function(){alert('clicked!')}, false);
//
// Modified from http://www.dustindiaz.com/top-ten-javascript
//
function ourAttachEvent(oElem, sType, fxn, fUseCapture)
{
    if (oElem.addEventListener)
    {
        oElem.addEventListener(sType, fxn, fUseCapture);
    }
    else if (oElem.attachEvent)
    {
        return oElem.attachEvent("on" + sType, fxn);
    }
    else
    {
        oElem["on" + sType] = fxn;
    }
    return true;
}
