// JavaScript Document

function changeColor(newColor)
{
 elem = document.getElementById("sendhome");
 elem.style.color = newColor;
}
