function email(ahost,auser) {
	window.document.location.href = "mailto:"+auser+"@"+ahost;
}

function change(imageName,imageSrc){
	document.getElementById(imageName).src = imageSrc;
	document.getElementById(imageName).style.display = '';
}
