function ShowPath(path)
{
	var elDiv = document.getElementById("Path");
	if (path!="[Move Up]")
	{
		elDiv.innerHTML="<nobr>Directory: " + path + "</nobr>";
		elDiv.style.display="block";
	}
}

function HidePath()
{
	var elDiv = document.getElementById("Path");
	elDiv.innerHTML="";
	elDiv.style.display="none";
}