function makemailto( pre, post ) {
	document.write( "\<a href=\"javascript:mailto('" + pre + "','" + post + "')\"\>" + pre + "@" + post + "\</a\>" );
}

function mailto( pre, post ) {
	document.location = "mailto:"+pre+"@"+post;
}
