// JavaScript Documentvar highlightLink = function () {	        var active = null, color = '#04D000';		        if (this.attachEvent) this.attachEvent('onunload', function () {            active = null;        });        return function (element) {            if ((active != element) && element.style) {                if (active) active.style.backgroundColor = '';                element.style.backgroundColor = color;				if (active) active.style.borderColor = '';				element.style.borderColor = color;                active = element;            }        };    }();