function updateLinks(strNavLinkID, strCategoryLinkID)
{
	try
	{
		e = document.getElementById(strNavLinkID);
		if (e)
		{
			e.style.fontWeight = "bold";
		}

//		e = document.getElementById(strCategoryLinkID);
//		if (e)
//		{
//			e.style.fontWeight = "bold";
//		}

//		getCurrentPage();
	}
	catch (err)
	{
	}
}
/*
function getCurrentPage() 
{ 
	try
	{
		var anchors = document.getElementsByTagName("a");
		if (anchors)
		{ 
			var thisPage = location.href; 
			for (var i=0; i<anchors.length; i++) 
			{  
				var anchor = anchors[i]; 
				thisHREF = anchor.getAttribute("href"); 
				if  ((thisHREF == thisPage) || (location.protocol + "//" + location.hostname + thisHREF == thisPage)) 
				{ 
					anchor.id = "current";
					return;
				} 
			}  
		}
	}
	catch (err)
	{
	}
} 
*/