function domailthing () {
	str = "jeff" + "raven65";
	str += "@";
	str += "ya" + "hoo" + ".com";

	a = document.createElement("A");
	a.href = "mailto" + ":" + str;

	x = document.createTextNode(str);
	a.appendChild(x);

	document.getElementById("addyhere").appendChild(a);
} // end func