/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function JQ_img_dialog(uniqueid){
    //if (!$(jQuery)){/* console.log("Jqueyr not found loading it now");*/Page.ClientScript.RegisterClientScriptInclude("jquery", "https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");}
    //if(!$(jQuery.ui)){/*console.log("Jquery-UI not found loading it now");*/Page.ClientScript.RegisterClientScriptInclude("jquery", "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.js");}
        var dialogID = "#"+uniqueid+"-dialog";
      //  $(document).ready(function(){
      
            $(dialogID).dialog({            
                modal: false,
                height:150,
                width:600
            });
            $(uniqueid).bind('dialogclose', function() {$(dialogID).remove();});
        //});
    }
    
    function JQ_img_dialogRem(uniqueid){
        var dialogID = "#"+uniqueid+"-dialog";
        $(dialogID).dialog('close');
    }
