
	//	Safe email addresses
	function DESemail(emailname, emailserver) {
		document.write("<a href='mailto:" + emailname + "@" + emailserver +"'>");
		document.write(emailname + "@" + emailserver);
		document.write("</a>");
		return;
	}

	//	Accessible popups
	function DESopen(url, width, height, toolbar, scroll) {
		window.open(url, "", "scrollbars=" + scroll + ",toolbar=" + toolbar + ",height=" + height + ",width=" + width);
		return;
	}

