function ToggleMenu(parent, child)
{
	if(child.style.display == '')
	{
		child.style.display = 'none';
		parent.classname = 'hmenyrow';
	}
	else
	{
		child.style.display = '';
		parent.classname = 'hmenyrow_containumeny';
		LoadUrl('AboutMPP.aspx');
	}
}
function LoadUrl(nurl)
{
	window.location.href = nurl;
}
var intId = 0;
function DoOpen()
{
	omexec.style.display = '';
	omexec_parent.className = 'hmenyrow_containumeny';
	clearInterval(intId);
}
function OpenMnu()
{
	intId = setInterval(DoOpen,100);
}

