function displayInfo()
{   
ob_post.UpdatePanel("cpContentInfomation");
}

function nodeSelect(id)
{   
ob_post.AddParam("id", id);	
ob_post.post(null, "DisplayInfo", displayInfo);
}



// Used by Lightbox - not Ajax
function aclick(anchor_id) {
	document.getElementById(anchor_id).onclick();
}

function hide(el){
    document.getElementById(el).style.display="none";
}
function show(el){
    document.getElementById(el).style.display="block";
}

function toggle(el, img)
{
    if (document.getElementById(el).style.display=="block"){
    img.src = "images2/plus.gif";
    hide(el);
    }
    else{
    img.src = "images2/minus.gif";
    show(el);
    }
    
}