	<!--
	//	TOGGLE v1.0
	idStatus = new Array();
	function Toggle(menuId,idCont,mType,mode)	{
		strTest = "menuId: " + menuId + "\n" +
					 "idCont: " + idCont + "\n" +
					 "mType: " + mType + "\n" +
					 "mode: " + mode + "\n";

		isMain		= (mType > -1);
		cont			= "cont" + menuId + "_" + idCont;
		key				= "key" + menuId + "_" + idCont;
		simb			= "simb" + menuId + "_" + idCont;
		simb2			= "simg" + menuId + "_" + idCont;
		form			= "form" + menuId + "_" + idCont;


		objForm		= document.forms[form];
		objKey		= document.getElementById(key);
		objCont		= document.getElementById(cont);
		objLoad1	= document.getElementById("loadingBox0");
		if (!isMain) objCont	= document.getElementById(key);
		objSimb		= document.getElementById(simb);
		objSImg		= document.getElementById(simb2);
		//if (objCont) visible = (objCont.style.display != "none");

		if (mode == 10)	Collapse(menuId,objCont);		//	CLOSE ONLY THIS MENU
		if (mode == 11)	Collapse("",objCont);				//	CLOSE ALL MENU

		//alert(strTest)

	/*
		//	SHOW NODE PROPERTIES
		if (isMain)	{
			alert("firstChild: " + objCont.firstChild.id + "\n" +
						"lastChild: " + objCont.lastChild.id + "\n" +
						"childNodes: " + objCont.childNodes.length + "\n" +
						"previousSibling: " + objCont.previousSibling.id + "\n" +
						"nextSibling: " + objCont.nextSibling.id + "\n" +
						"parentNode: " + objCont.parentNode.id + "\n");
		}
	*/

		if (isMain)	{
			if (idStatus[cont] && idStatus[cont] == 1)	{
				idStatus[cont] = 0;
				if (objCont) objCont.style.display	=	"none";
				if (objKey)	objKey.className = objKey.className.replace("H","");
				if (objSimb) objSimb.innerText = "+";
				hoverOutImg(idCont,0);
				//	ONLY "<A>" TAGS
				
				//alert("Load empty or default page...")
			}
			else if (idStatus[cont] == 2)	{
				idStatus[cont] = 1;
				if (objLoad1) objLoad1.style.display = "";
				if (objForm)	{
					if (objForm.action.indexOf("**none**") == -1) objForm.submit();
				}
			}
			else	{
				idStatus[cont] = 1;
				if (objCont) objCont.style.display	=	"";
				if (objKey && objKey.className.indexOf("H") == -1) objKey.className = objKey.className + "H";
				if (objSimb) objSimb.innerText = "-";
				if (objLoad1) objLoad1.style.display = "";
				if (objForm)	{
					if (objForm.action.indexOf("**none**") == -1) objForm.submit();
				}
			}
		}
		if (!isMain)	{
			if (idStatus[cont] && idStatus[cont] == 1)	{
				idStatus[objCont.parentNode.id] = 1;
				idStatus[cont] = 0;
				if (objKey) objKey.className = objKey.className.replace("H","");
				hoverOutImg(idCont,0);
				//alert("Load empty, default or main item page...")
			}
			else	{
				//alert(typeof objCont.parentNode)
				idStatus[objCont.parentNode.id] = 2;
				idStatus[cont] = 1;
				if (objKey && objKey.className.indexOf("H") == -1) objKey.className = objKey.className + "H";
				if (objLoad1) objLoad1.style.display = "";
				if (objForm)	{
					if (objForm.action.indexOf("**none**") == -1) objForm.submit();
				}
			}
		}
	}

	//	EXPAND (ALL) v1.0
	function Expand(menuId,objCont)	{
		alert("Funxtion Expand disabled!");
		return;
		strDivs = cont + "\n\n";
		divs = document.getElementsByTagName("DIV");
		for (i=0;i<divs.length;i++)	{
			if (divs[i].id.indexOf("cont" + menuId) > -1 && divs[i].id.indexOf(objCont.parentNode.id) == -1)	{
				strDivs += divs[i].id.search("cont" + menuId) + " (" + divs[i].id + ")\n";
				divs[i].style.display = "";
				//document.getElementById(divs[i].id.replace("cont","simb")).innerText = "+";
			}
		}
		//alert(strDivs);
	}

	//	COLLAPSE (ALL) v1.0
	function Collapse(menuId,objCont)	{
		strTest = "Show test:\n\n";
		strDivs = cont + "\n\n";
		divs = document.getElementsByTagName("DIV");
		for (i=0;i<divs.length;i++)	{
			if (divs[i].id.indexOf("key" + menuId) > -1 || divs[i].id.indexOf("cont" + menuId) > -1)	{
				//	RESET KEYS STYLE
				//alert(divs[i].id + " - " + objCont.parentNode.id);
				isParent	= (divs[i].id.replace("key","cont") == objCont.parentNode.id);
				if (objCont.parentNode.id == "") isParent	= (divs[i].id.replace("key","cont") == objCont.parentNode.parentNode.id);
				isSelf		= (divs[i].id == objCont.id.replace("cont","key"));
				/*if (isParent)*/ strTest += "Tag (" + divs[i].id.replace("key","cont") + "): " + objCont.parentNode.id + "\t" +
																																								 + objCont.parentNode.parentNode.id + "\t" +
																																								 + objCont.parentNode.parentNode.parentNode.id + "\t" +
																																								 + objCont.parentNode.parentNode.parentNode.parentNode.id + "\t" +
																																								 + objCont.parentNode.parentNode.parentNode.parentNode.parentNode.id + "\t" +
																																								 + objCont.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.id + "\n";
				if (!isParent && !isSelf && divs[i].id.indexOf("key" + menuId) > -1)	{
					if (divs[i].className.indexOf("H") > -1) divs[i].className = divs[i].className.replace("H","");
					idStatus[divs[i].id.replace("key","cont")] = 0;
					hoverOutImg(divs[i].id.replace("key",""),0);
					
				}
				//	CONTS
				if (!isParent && divs[i].id.indexOf("cont" + menuId) > -1 && idStatus[objCont.id] != 2)	{
					strDivs += divs[i].id.search("cont" + menuId) + " (" + divs[i].id + ")\n";
					divs[i].style.display = "none";
					//document.getElementById(divs[i].id.replace("cont","simb")).innerText = "+";
				}
			}
		}
		//alert(strTest);
	}
	
	
	function hoverOut(item,nClass)	{
		if (idStatus["cont"+item] != 1 && idStatus["cont"+item] != 2)	{
			key	= "key" + item;
			document.getElementById(key).className = nClass;
		}
	}

	function hoverOutImg(item,mode)	{
		if (document.images["img"+item] != null)	{
			expH = /O.(\w{3,4})$/;
			expO = /H.(\w{3,4})$/;
			curImg	= document.images["img"+item].src;
			if (idStatus["cont"+item] != 1 && idStatus["cont"+item] != 2)	{
				if (mode == 1)	document.images["img"+item].src = curImg.replace(expH,"H.$1");
				else						document.images["img"+item].src = curImg.replace(expO,"O.$1");
			}
			if (mode == 1)	window.setTimeout('document.getElementById("sub'+item+'").style.display = ""',70);
			else						window.setTimeout('document.getElementById("sub'+item+'").style.display = "none"',70);
		}
	}
	//-->

