function mostrar_menu_der(div,sel,cuantos) 
{ 

for(i=1;i<=cuantos;i++)
{
	document.getElementById(div+i).style.display = 'none'; 
}
	document.getElementById(div+sel).style.display = 'block'; 
}

function mostrar_menu_cen(div,sel,cuantos) 
{ 

for(i=1;i<=cuantos;i++)
{
	document.getElementById(div+i).style.display = 'none'; 
	document.getElementById('t'+div+i).style.background="#003366";
}
	if (sel>0){
	document.getElementById(div+sel).style.display = 'block';
	document.getElementById('t'+div+sel).style.background="#006699";
	}
	
}
function CambiaColor(esto,fondo,texto)
 {
    esto.style.background=fondo;
    esto.style.color=texto;
 }

