function address (){
	url =  "mailto:cmdrchaos@generalchaos.net" ;
	document.location.href= url;
}
function prepEmail() {
	if (!document.getElementById) {
	return false;
}
	if (!document.getElementById("email")) {
	return false;
}
	var email = document.getElementById("email");
	email.setAttribute("href","javascript:address();");
}

window.onload = prepEmail;
