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