function send( hostname, username, hostext ) 
{
	var address;
	address = username + '@' + hostname + "." + hostext;
	window.location.href = "mailto:" + address;
}
function display( hostname, username, hostext ) 
{
	document.writeln(username + '@' + hostname + "." + hostext);
}