// JavaScript Document

OCULTO="none";

VISIBLE="block";

/*function mostrar(blo) {
	document.getElementById(blo).style.display=VISIBLE;
}

function ocultar(blo) {
	document.getElementById(blo).style.display=OCULTO;
}*/

function ocultarTodo(){
	ocultar("info1");
	ocultar("info2");
	ocultar("info3");
	ocultar("info4");
	ocultar("info5");
	ocultar("info6");
	ocultar("info7");
}

/*function toggleDisplay(targetId)
{
        target = document.getElementById(targetId);
    	if (target.style.display == "none"){
    		target.style.display = "block";
    	} else {
    		target.style.display = "none";
    	}
}*/

/* Function for showing and hiding elements that use 'display:none' to hide */
function toggleDisplay(targetId)
{
    if (document.getElementById) {
        target = document.getElementById(targetId);
    	if (target.style.display == "none"){
			/*alert("Display Style: "+target.style.display);*/
    		target.style.display = "block";
    	} else {
			/*alert("Display Style: "+target.style.display);*/
    		target.style.display = "none";
    	}
    }
}
