
    function openDemo(src)   {
   
        $('<div>').dialog({
            modal: true,
            open: function (){
                $(this).load(src);
            },
            height: 500,
            width: 800,
            title: 'Help'
        });
        
    }   



