function checkEmailForm() {
	var txt = document.getElementById("_txtEmail");

	if (txt.value.match("\\w+([-+.\']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*")) {
		var myWin = window.open("about:blank", "newsletterPop", "height=100,width=220,top=50,left=50");
		txt.style.color = "#FFF";
		return true;
	}
	else {
		alert("Please, enter a valid email address.");
		txt.focus();
		return false;
	}
}

function clearEmailForm(evt) {
	var txt = document.getElementById("_txtEmail");
	txt.value = "";

	alert("in");
}