
function showLoc()
{
	var a = window.location.href;
	var b = a.lastIndexOf("/");
	var c = a.lastIndexOf(".html");
	var d = a.substring(b+1,c);
	var e=document.getElementById(d);
	var f;
	if (c==-1)
	{
		e=document.getElementById("index");
	}
	if (e)
	{
		e.setAttribute(classAttributeName(),"loc");
		f = e.firstChild;
		f.setAttribute(classAttributeName(),"locA");
	}
	else if (d.match("training"))
	     {
	     		e=document.getElementById("trainconsult");
	     		e.setAttribute(classAttributeName(),"locchild");
			f = e.firstChild;
			f.setAttribute(classAttributeName(),"locchildA");
	     }
}