<!-- 
function mostrardiv() {
 div = document.getElementById('vendido-flotante');
 div.style.display = '';
 }
 function cerrar() {
 div = document.getElementById('vendido-flotante');
 div.style.display='none';
 }
// -->
