<!--
function thisLink(linkURL,linkName)
{
var sPage = window.location.href;
var sHost = window.location.host;
var listType;
var listEndType;
var listLink;
sPage = sPage.substring(sHost.length + 7);

if(sPage == linkURL)
{
	listType = "<b>";
	listEndType = "</b>";}
else
{
	listType = "";
	listEndType ="";}
listLink=listType + "<a href=" + linkURL + ">" + linkName + "</a>" + listEndType;
return listLink;
}
--> 