<!--
function hide_m1()
{		
	var objCurrentSection = document.getElementById("m1");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "none";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}
function hide_m2()
{		
	var objCurrentSection = document.getElementById("m2");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "none";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}

function hide_m3()
{		
	var objCurrentSection = document.getElementById("m3");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "none";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}
function hide_m4()
{		
	var objCurrentSection = document.getElementById("m4");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "none";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}

function hide_m5()
{		
	var objCurrentSection = document.getElementById("m5");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "none";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}
function show_m1()
{		
	var objCurrentSection = document.getElementById("m1");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "block";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}

function show_m2()
{		
	var objCurrentSection = document.getElementById("m2");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "block";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}


function show_m3()
{		
	var objCurrentSection = document.getElementById("m3");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "block";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}
function show_m4()
{		
	var objCurrentSection = document.getElementById("m4");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "block";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}
function show_m5()
{		
	var objCurrentSection = document.getElementById("m5");		
	if (objCurrentSection != null)
	{
		objCurrentSection.style.display = "block";			
		objCurrentSection.parentElement.childNodes[0].className = "open";
		if (objCurrentSection.parentElement.parentElement.nodeName == "UL")
			showSection(objCurrentSection.parentElement.parentElement);		
	}
}


function showSection(objSection)
{	
	objSection.style.display = "block";
	objSection.parentElement.childNodes[0].className = "open";	
	if (objSection.parentElement.parentElement != null && objSection.parentElement.parentElement.nodeName == "UL")
		showSection(objSection.parentElement.parentElement);
}
-->