IE4 = (document.all) ? 1 : 0;
if (/Mozilla\/5\.0/.test(navigator.userAgent))
{
	IE4 = 1;
}

function _initIt()
{
    tempColl = document.getElementsByTagName("DIV");
    for (i=0; i<tempColl.length; i++) 
    {
    	if (tempColl[i].className != "parent") 
	{
	    tempColl[i].style.display = "none";
	}
    }
}

function expandIt(el,pic) 
{
	if(IE4)
	{
	    whichEl = document.getElementById(el);  // eval(el);
	    whichIm = document.getElementById(pic); // eval(pic);
		temp = whichIm.nextImage;
		
		if (temp == undefined) {
		  temp = "/images/dtriangle.jpg";
		}
		whichIm.nextImage = whichIm.src;
		whichIm.src = temp;
	    if (whichEl.style.display == "none") 
		{
	        whichEl.style.display = "block";
	    }
	    else 
		{
	        whichEl.style.display = "none";
	    }
	}
	return false;
}

function _onload()
{
	_initIt();
}

