
	function DESemail(emailname,emailserver) {
		document.write("<a href='mailto:" + emailname + "@" + emailserver +"'>");
		document.write(emailname + "@" + emailserver); 
		document.write("</a>"); 
	}

	function DESgoto(target) {
		if (target != "") {
		  	this.location.href = target;
		}
	}
