  function getPar(o) 
  {
    var ele = new Object();
    ele = findDIV(o)
		if (ele!=null)
		{
			var oA = ele.children.item(1);
			if (oA.style.display == "inline")
			{
				oA.style.display = "none";
				o.style.color = "#006633";
			}
			else
			{
				oA.style.display = "inline";
			} 
		}
	}

	function findDIV(x)
	{
	var oDiv = document.all.tags('div')[0].all.tags("DIV");
	
	/* var oDiv = document.all.tags("DIV"); */
	var iDiv;
		if (oDiv != null)
		{
			iDiv = oDiv.length;
			for (var i=0; i<iDiv; i++)
			{
				if(oDiv[i].contains(x))
				{
				return oDiv[i];
				}
			}
		}
	}
	
	function overState(obj)
	{
		obj.currentColor = obj.style.color;
		obj.style.color = "#A53C31";
		obj.style.cursor = "hand";
	}

	function outState(obj)
	{
		if ("#006633" == obj.style.color)
		{
			obj.style.color = obj.currentColor;
		}
	}
	
// http://www.cssnewbie.com/showhide-content-css-javascript/
function showHide(shID) {
    if (document.getElementById(shID)) {
        if (document.getElementById(shID+'-show').style.display != 'none') {
            document.getElementById(shID+'-show').style.display = 'none';
            document.getElementById(shID).style.display = 'block';
        }
        else {
            document.getElementById(shID+'-show').style.display = 'inline';
            document.getElementById(shID).style.display = 'none';
        }
    }
}

