//// FUNCTIONS TO POPUP AND SWAP MENU ITEMS
function Hide(Cell){ 
Cell.style.display = "none"
 }
function Show(Cell)
{
 Cell.style.display = ""
}

function Swap(Cell){
switch (Cell.style.color){
case "":
{
Cell.style.color="white"
Cell.style.background="#AFB72B"
}
break
case "white":
{
Cell.style.color=""
Cell.style.background="none"
}
break
default:
Cell.style.display = ""
}
}

function NavTo(Loc){
window.location = Loc
}
