function Showpath(id)
		{
		  for (var i = 0;i < 5;i++)
		  {
			  var path2n = document.getElementById("path2n" + i);
			  var path2c = document.getElementById("path2c" + i);
			  if (i == id) 
			  {
				   path2c.style.display = "";
			  }
			  else
			  {
				  path2c.style.display = "none";
			  }
		    }
	      }
		function Showpath2(id)
		{
		  for (var i = 0;i < 5;i++)
		  {
			  var path2n = document.getElementById("path2n" + i);
			  var path2c = document.getElementById("path2c" + i);
			  if (i == id) 
			  {
				   path2c.style.display = "none";
			  }
			  else
			  {
				  path2c.style.display = "none";
			  }
		    }
	      }
