	//
	// 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/leftColSource.php";
  		jQuery("#tree1").treeview({
  			url: lurl
  		});   
   } 
    
	function branchTo(lurl) {
    document.location.href = lurl;
  }
