<!--
	function SymError()
		{
			return true;
		}

	window.onerror = SymError;

//-->


	function ShowHide(Cell, Parent){

	switch (Cell.style.display){
	case "":
		{
			Cell.style.display = "none"
			Parent.innerHTML = "<img border='0' src='images/menu_plus.gif'>"
		}
	break

	case "none":
		{
			Cell.style.display = ""
			Parent.innerHTML = "<img border='0' src='images/menu_minus.gif'>"
		}
	break
	
	default:
			Cell.style.display = "none"
		}
	 }
		 
	function ChangeCell(Cell)
	{
		Cell.style.color="red"
	}
		
	function ChangeBack(Cell)
	{
		Cell.style.color=""
	}
		













