//Javascript file
$(document).ready(function(){
       $(".validateForm").validate({
          rules: {
            password_again: {
              equalTo: "#password"
            }
          }
        });


        $(".showFilesDiv").click(function(){
            if ($("#filesDiv").is(':visible'))

                $("#filesDiv").hide("fast");
           $("#filesDiv").load("get_files.php?type="+$(this).attr('filetype'), function() {
               $("#browser").treeview({
                    collapsed: true
                });
               $(this).show("slow");
           });
       

        });
});

function insertIMG(url) {
    var oEditor = CKEDITOR.instances.text;
    var value = '<img src="'+url+'" style="width=350px;" />';

    if (oEditor.mode == 'wysiwyg')
        {
            oEditor.insertHtml(value);
        }
        else{
            alert('You must be on WYSIWYG mode!');
        }
}
