function mailme(name)
{
	top.location.href="mailto:" + name + "@savetheapple.com"
}

function showhide(id, id2){
	ID = document.getElementById(id);
	ID2 = document.getElementById(id2);

	if(ID.style.display == "") {
		ID.style.display = "none";
		ID2.innerHTML = "[Click here to read more]";
	} else {
		ID.style.display = "";
		ID2.innerHTML = "[Click here to hide the rest of this post]";
	}
}