﻿function HideMenu()
{
	var Menu1Pulldown = document.getElementById('Menu1Menu');
	var Menu2Pulldown = document.getElementById('Menu2Menu');
	var Menu3Pulldown = document.getElementById('Menu3Menu');
	var Menu4Pulldown = document.getElementById('Menu4Menu');

	if (Menu1Pulldown != null)
		Menu1Pulldown.className = 'PopupMenuHide';
	if (Menu2Pulldown != null)
		Menu2Pulldown.className = 'PopupMenuHide';
	if (Menu3Pulldown != null)
		Menu3Pulldown.className = 'PopupMenuHide';
	if (Menu4Pulldown != null)
		Menu4Pulldown.className = 'PopupMenuHide';

}
function ShowMnu1()
{
	HideMenu();

	var Menu = document.getElementById('tblMenu');
	var Menu1Pulldown = document.getElementById('Menu1Menu');
	if (Menu1Pulldown != null)
	{
		Menu1Pulldown.className = 'PopupMenuShow';
		var BodyTable = document.getElementById('BodyTable');
		Menu1Pulldown.style.left = BodyTable.offsetLeft + 343 + "px";
		Menu1Pulldown.style.top = Menu.offsetTop + Menu.offsetParent.offsetTop + Menu.offsetHeight + "px";
	}
}
function ShowMnu2()
{
	HideMenu();

	var Menu = document.getElementById('tblMenu');
	var Menu2Pulldown = document.getElementById('Menu2Menu');
	if (Menu2Pulldown != null)
	{
		Menu2Pulldown.className = 'PopupMenuShow';
		var BodyTable = document.getElementById('BodyTable');
		Menu2Pulldown.style.left = BodyTable.offsetLeft + 437 + "px";
		Menu2Pulldown.style.top = Menu.offsetTop + Menu.offsetParent.offsetTop + Menu.offsetHeight + "px";
	}
}
function ShowMnu3()
{
	HideMenu();

	var Menu = document.getElementById('tblMenu');
	var Menu3Pulldown = document.getElementById('Menu3Menu');
	if (Menu3Pulldown != null)
	{
		Menu3Pulldown.className = 'PopupMenuShow';
		var BodyTable = document.getElementById('BodyTable');
		Menu3Pulldown.style.left = BodyTable.offsetLeft + 673 + "px";
		Menu3Pulldown.style.top = Menu.offsetTop + Menu.offsetParent.offsetTop + Menu.offsetHeight + "px";
	}
}
function ShowMnu4()
{
	HideMenu();

	var Menu = document.getElementById('tblMenu');
	var Menu4Pulldown = document.getElementById('Menu4Menu');
	if (Menu4Pulldown != null)
	{
		Menu4Pulldown.className = 'PopupMenuShow';
		var BodyTable = document.getElementById('BodyTable');
		Menu4Pulldown.style.left = BodyTable.offsetLeft + 743 + "px";
		Menu4Pulldown.style.top = Menu.offsetTop + Menu.offsetParent.offsetTop + Menu.offsetHeight + "px";
	}
}

function ShowROTbl1()
{
	var t1 = document.getElementById('ROTbl1');
	var t2 = document.getElementById('ROTbl2');
	var t3 = document.getElementById('ROTbl3');

	t1.style.display = 'inline';
	t2.style.display = 'none';
	t3.style.display = 'none';
}

function ShowROTbl2()
{
	var t1 = document.getElementById('ROTbl1');
	var t2 = document.getElementById('ROTbl2');
	var t3 = document.getElementById('ROTbl3');

	t1.style.display = 'none';
	t2.style.display = 'inline';
	t3.style.display = 'none';
}

function ShowROTbl3()
{
	var t1 = document.getElementById('ROTbl1');
	var t2 = document.getElementById('ROTbl2');
	var t3 = document.getElementById('ROTbl3');

	t1.style.display = 'none';
	t2.style.display = 'none';
	t3.style.display = 'inline';
}

