// JavaScript Document

function showIt(x){
	var pathstep = x;
	document.getElementById(pathstep).style.visibility='visible';
}

function hideIt(x){
	var pathstep = x;
	document.getElementById(pathstep).style.visibility='hidden';
}
