	//
	// leftCol.js : javascript to display the ajax jQuery treeview
	//
	
  /*
  window.setTimeout(
	  function () {
  		jQuery("#tree1").treeview({
  			url: "<?=$srvrName?>/site/leftColSource.php"
  		});    
    }
    , 750  );
  */
  
   function showjQueryTree(basepath) {
    var lurl = basepath+ "/site/leftColmnSourceBis.php?tree=1";
  		jQuery("#tree1").treeview({
  			url: lurl,
			unique: true,
			persist: "cookie"
  		});   
   } 

   function showjQueryTree2(basepath) {
    var lurl = basepath+ "/site/leftColmnSourceBis.php?tree=2";
  		jQuery("#tree2").treeview({
  			url: lurl,
			unique: true,
			speed : 1,
			persist: "cookie"
  		});  		
   }
   
  function branchTo(lurl) {
    document.location.href = lurl;
  }

