// 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;
	}
