function colocarSubMenus()
{
	var izq = document.body.clientWidth;
	izq = (izq - 767)/2 + 160;	
	for (i=1;i<=numMenus;i++)
	{
		eval ("document.getElementById('subMenu"+i+"').style.left = "+izq+";");
	}
}

function showHide(capa,estado)
{
	eval ("document.getElementById('"+capa+"').style.visibility = '"+estado+"'");
}

function rollOverFondo(capa,color)
{
	eval ("document.getElementById('"+capa+"').style.backgroundColor = '"+color+"'");
}

function rollOverTexto(capa,texto)
{
	eval ("document.getElementById('"+capa+"').style.color = '"+texto+"'");
}

function rollOverSM(capa,color,texto)
{
	rollOverFondo(capa,color);
	rollOverTexto(capa,texto);
}

function verSoluciones(capa,modo)
{
	eval ("document.getElementById('"+capa+"').style.display = '"+modo+"'");
}
