
function ChosenMenu(oThis,cColor)
{
	var oTR

	oTR = document.getElementById("SelectedMenu")
	oTR.style.backgroundColor  = cColor;

	unSelectMenu(oThis)

	top.frames['BodyFrame'].location.href = oThis.id + '.htm'

	FrameImg(oThis.id)
	ClearAllBotton(cColor)
	window.status = oThis.id
}

function FrameImg(oThis)
{
	var imgPath = "images/LeftFramePix/"
	top.frames['LeftFrame'].document.getElementById("FrameImg").src = imgPath + oThis + '.gif'
}

function SelectMenu(oThis,cColor)
{
	var oTR

	oTR = document.getElementById("MenuItems")
	oTR.style.backgroundColor  = cColor;
}

function unSelectMenu(oThis)
{
	var oTR

	oTR = document.getElementById("MenuItems")
	oTR.style.backgroundColor  = "white";
}

function ClearAllBotton(oThis)
{
	top.frames['BottomFrame'].document.getElementById("SelectedMenu").style.backgroundColor = oThis
	top.frames['TopFrame'].document.getElementById("SelectedMenu").style.backgroundColor = oThis
}

function gotoMenu(cMenuName)
{
	top.frames['BottomFrame'].document.getElementById(cMenuName).click()
}
