function highlight() {

var app=navigator.appName;

if (app.indexOf('Netscape') != -1)
	{
}
else
	{
		var path = location.pathname; 							//grab the current URI
		var re = /^.*\/WORKAREA\/[^\/]+/; 						//set regex for TeamSite vpath
		if (re.test(path)) 										//if this is on the TeamSite box
			path = path.replace(/^.*\/WORKAREA\/[^\/]+/, ''); 	//then clean up the URI
		
		var list=document.scripts[6].text;						//get the first script tag text
			list=list.replace(/[\r]/g,"");						//remove all CR																		
			list=list.replace(/\/\*[\n]/g,"");					//remove the opening comment
			list=list.replace(/\*\/[\n]/g,"");					//remove the closing comment
			list=list.replace(/[\n]/g," ");						//replace LF with spaces

		a = list.split(" ");									//split the list by spaces	
		
		for (i=1; i<a.length-1; i++) {
			x = a[i].substring(0,a[i].indexOf(","));			//before the comma is the regex source
			y = a[i].substring(a[i].indexOf(",")+1,a[i].length);//after the comma is the index of the DIV
			zz = new RegExp(x);
			if (zz.test(path)) {
				eval(y + ".style.fontWeight='bold'");
			}
		}
	}
}