/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */



function ocultarElemento(idElemento)
{

        document.getElementById(idElemento).style["display"] = "none"
}
function verElemento(idElemento)
{
        document.getElementById(idElemento).style["display"] = ""
}
