function highlight_field(fieldName) {
	if(document.forms[0].elements[fieldName].length == undefined) {
		document.forms[0].elements[fieldName].style.backgroundColor="#ffffcc";
	}
	else {
		document.forms[0].elements[fieldName][0].style.backgroundColor="#ffffcc";
	}
}

function newsletter_subscribe_focus(component) {
	if(component.value == "Type Email Here") {
		component.value = "";
	}
}

function newsletter_subscribe_blur(component) {
	if(component.value == "") {
		component.value = "Type Email Here";
	}
}
