// JavaScript Document
function activarmenu(obj)
{
	obj.style.color="#aaffaa";
	obj.style.textDecoration="underline";	
}
function desactivarmenu(obj)
{
	obj.style.color="#ffffff";
	obj.style.textDecoration="none";	
}
function cambiarmenu(obj,color1,color2)
{
	obj.style.color=color1;
	obj.style.backgroundColor=color2;	
}

function irurl(url)
{
	document.formulario.action="frames.asp";
	document.formulario.url.value=url;
	document.formulario.submit();
}
function mostrarcapa(nombre)
{
		if(nombre.style.display=="none")
		{
			nombre.style.display="";
		}
		else
		{
			nombre.style.display="none";
		}
}
