/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
/**
 *Libreria para dialog box
 */
dojo.require("dijit.Dialog");
dojo.require("dijit.form.Button");
dojo.require("dijit.form.Textarea");
dojo.require("dijit.layout.AccordionContainer");
dojo.require("dojo.parser");  // find widgets
dojo.require("dojo.NodeList-traverse");  //para los botones de leer mas



dojo.addOnLoad(function(){
    dojo.parser.parse();
    dojo.query(".menuHiden").style('display','block');    
});



 var  noticiaVentanas;
        dojo.addOnLoad(function() {
            // create the dialog:
            noticiaVentanas = new dijit.Dialog({
                title: "Noticia",
                style: "{width:568px;height:1150px;overflow:auto}"
            });
        });
       function muestraVentana(nodo) {
            noticiaVentanas.attr("content", '<iframe  width="800" height="600"   src="'+nodo+'"></iframe>' );
            noticiaVentanas.attr("title", "");            
            noticiaVentanas.show();
        }
       function muestraFoto(nodo) {
            noticiaVentanas.attr("content", '<iframe  width="605" height="405"   src="'+nodo+'"></iframe>' );
            noticiaVentanas.attr("title", "");            
            noticiaVentanas.show();
        }

