function mostrar(modulo,posicionx,posiciony){
    document.getElementById(modulo).style.display='block';
    if (posicionx)
        document.getElementById(modulo).style.bottom=posicionx+'px';
    if (posiciony)
        document.getElementById(modulo).style.right=posiciony+'px';
}


function ocultar(modulo){
    document.getElementById(modulo).style.display='none';
}
