function CloseModalBox(){    
//    $('#basic-modal').dialog( 'close' );
    $('#basic-modal').dialog( 'destroy' );
}

function ShowModalBox(url,name){                
    
    $('#basic-modal').dialog( 'destroy' );
    $('#basic-modal').dialog({ resizable: true,height: 530,width:658,title: name,bgiframe: true,
    // При закрывании убираем все что выводилось в диалоге (чтобы пропадал звук после закрытия флешки)
    close: function(event, ui) { 
        $("#basic-modal").html('');        
        }
    });
    
    $("#basic-modal").dialog('open');
    $("#basic-modal").html('<iframe src="'+url+'" width=100% height=100% frameborder=0 bgcolor=white scrolling="auto"></iframe>');
}
    

