Hola:
Para el ejemplo que pusiste antes...
Código:
function mostrardiv(cual) {
div = document.getElementById(cual);
div.style.display = '';
}
function cerrar(cual) {
div = document.getElementById(cual);
div.style.display='none';
}
Y el botón para mostrar...
Código:
<button type="button" onclick="mostrardiv('flotante')">mostrar</button>
Saludos