<!-- Begin

function blockError(){return true;}
window.onerror = blockError;

function ShowHide(objName)
{
	var obj = document.getElementById(objName);
	var li = document.getElementById("li" + objName.substr(objName.indexOf("CS") + 2));
	var img = document.getElementById("exp" + objName.substr(objName.indexOf("sec") + 3));
	//var ul = document.getElementById("ulExpand");
	
	if (obj.style.display == "none") 
	{ 
		obj.style.display = "inline"; 
		
		if (li != null)
		{
			li.style.listStyleImage = "url(picts/redbig_arrow_down.gif)";
		}
		
		if (img != null)
		{
			img.src = "picts/redbig_arrow_down.gif";
		}
	} 
	else 
	{
		obj.style.display = "none"; 

		if (li != null)
		{
			li.style.listStyleImage = "url(picts/redbig_arrow.gif)";
		}

		if (img != null)
		{
			img.src = "picts/redbig_arrow.gif";
		}
	} 
}

// -->