      function HighlightLink(a) {
		c = "ffffff"
		d = "0066CC"
        u = decodeURI(a.URL);
        u = u.replace(/\\/g,"");
        u = u.replace(/\//g,"");

        t = a.all.tags("a");
        n = t.length;
        for (var i=0; i < n; ++i ) {
          x = t[i];
          h = decodeURI(x.href);
          h = h.replace(/\//g,"");
          if ( h == u ) {
            x.style.background=d;
			x.style.color=c;
          }
        }
      }
	  function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}