/**
* Creates a dijit dialog box based on a div content
* @param id div identifier
*/
function dialog_create(id, title1) {
var dialogWidget = dijit.byId(id);
if( dialogWidget )
dialogWidget.destroyRecursive(true);
dialogWidget = new dijit.Dialog(
{ title: title1, duration:600},
dojo.byId(id));

dialogWidget.startup();
}