
function over(element) {
element.style.backgroundColor = "09669f";
element.style.color = "#ffffff";
element.style.cursor = "hand";}

function out(element) {
element.style.backgroundColor = "449ed5";
element.style.color = "#000000";
element.style.cursor = "default";}


function Mostrar(NumMenu) {
MenuFunc = eval('document.all.' + NumMenu + '.style');
state = MenuFunc.visibility;
if (state != "visible" || state != "show"){MenuFunc.visibility = "visible";}
}

TotaldeLayers=2;
function Sumir() {
for (a=1; a <= TotaldeLayers; a++){
Menu = eval('document.all.Menu' + a + '.style');
Menu.visibility = "hidden";
}}
