function showHideMenuPath(divToShow, divToHide)
{
	document.getElementById(divToShow).className = 'showDiv';
	document.getElementById(divToHide).className = 'hideDiv';
}

function populateURL(objSelect) {
	document.getElementById("edit-path").value = "node/" + objSelect.options[objSelect.selectedIndex].value;
}