// Displays the item name in the browser status bar

function s(txt) {
		self.status = txt;
}

// Prevents spam (hopefully)

function nospam(name,domain) {
    	document.location = "mailto:" + name + "@" + domain;
	}

// Removes the link border in IE4+, NS6
function unblur() {
	this.blur();
}

function getLinksToBlur() {
	if ((isW3C) || (isAll)) {
		if (isW3C) {
			links = document.getElementsByTagName("a");
		} else {
			links = document.all.tags("a");
		}
		for(i=0; i<links.length; i++) {
			links[i].onfocus = unblur
		}
	}
}

