function imageover(id) {
	document.getElementById(id).src = "images/" + id + "_over.gif";
}

function imageout(id) {
	document.getElementById(id).src = "images/" + id + ".gif";
}

function textboxfocus(textbox) {
	if (textbox.value == "your email address")
		textbox.value = "";
}

function textboxblur(textbox) {
	if (textbox.value == "")
		textbox.value = "your email address";
}

