function doEmail(prefix, suffix) {
	if (!suffix)
		suffix = "moxiecode.com";

	window.open("mailto:" + prefix + "@" + suffix, "_self");
}
