Contacto = {
    panel : new YAHOO.widget.Panel("contacto_overlay", {
                fixedcenter: true, 
                constraintoviewport: false, 
                underlay:"none", 
                close:false, 
                visible:false, 
                draggable:false,
                modal : true,
                width: '230px',
                height: '120px'
            }),

    show : function(){
        var html = "<div class='t_articulo'>Contacto</div>"
                 + "<b>Teléfonos:</b> <br>T. (442) 238 5067 <br> 01 800 715 1742"
                 + "<br>&nbsp;<br><a href='mailto:contacto@asomarte.com'>Escr&iacute;benos"
                 + "</a> a contacto@asomarte.com.";
        
        this.panel.render(document.body);
        this.panel.setBody(html);
        this.panel.render(document.body);
        this.panel.show();
        YAHOO.util.Event.addListener(document.getElementById('contacto_overlay_mask'),
                                    'click',
                                    function() { Contacto.panel.hide();  });
        
    },
    
}