<!-- // Para lo + nuevo ----------------------------------------------------------------------
function cambiarTxt(enlace, txt) 
{
	var btn = document.getElementById(enlace);
	btn.firstChild.data = txt;
	//document.getElementsByTagName("a")[0].firstChild.data = txt;
}
function show(enlace, object) 
{
	var obj = document.getElementById(object);
	obj.style.display = "block";
	
	var btn = document.getElementById(enlace);
	btn.href="javascript:hide('" + enlace + "', '" + object + "')";
	cambiarTxt(enlace, "ocultar");
} // fin function show(object)

function hide(enlace, object) 
{
	var obj = document.getElementById(object);
	obj.style.display = "none";
	
	var btn = document.getElementById(enlace);
	btn.href="javascript:show('" + enlace + "', '" + object + "')";
	cambiarTxt(enlace, "ver...");
} // fin function hide(boject)
// Para lo + nuevo ----------------------------------------------------------------- //-->
