function ver(){
 if (document.getElementById("descripcion").style.display == "")
 {
   document.getElementById("descripcion").style.display = "none";
 }
 else
 {
   document.getElementById("descripcion").style.display = "";
 }
}

function contacto()
{
  opener.location = 'contacto.php';
  window.close();
}

function detalle(producto)
  {  
    var tope=(screen.height - 320) / 2;
    var lefte=(screen.width - 600) / 2;
    destino = window.open(producto+'.html','destino','width=600 height=320, left='+lefte+', top='+tope+', menubar=no, status=no,location=no, toolbar=no, scrollbars=no, resizable=no');
    destino.focus();
  }

//-->
