<!--

function fncExpand(x)
{
	var oDiv;
	var oImg;
	var object;

	oDiv = 'oDiv' + x;
	oImg = 'oImg' + x;

	object = document.getElementById(oDiv);

	if (object)
		object.style.display = (object.style.display == 'none') ? 'block' : 'none';

	object = document.getElementById(oImg);
	object.isExpanded = !object.isExpanded;
	swap(object, 'navo');
}

function fncHideNav()
{
	  top.mainframeset.cols = "0,*";
}

function swap(object, className)
{
	if (object.id != 'oImg<% = Request("section") %>')
	{
		if(className != 'nav')
		{
			object.className = className;
		}
		else if(!object.isExpanded)
		{
			object.className = className;
		}
	}
}



function MM_openBrWindow(theURL,winName,features)
{ //v2.0
	window.open(theURL,winName,features);
}
 //  -->