		var def = 'Enter your email here...';
		function CheckAnnounceForm(form) {
			if (form.email.value == '' || form.email.value == def) {
				alert("To receive our monthly newsletter, please enter your email address.");
			}
			else  {
				alert("Our monthly newsletter will be sent to you at "+form.email.value+", with interesting news, updates and promotions. We will not pester you or share your email address, and you can opt out at any time.\n\nMeanwhile, check out our blog - you can find a link in the upper-right corner of the page. Thank you for subscribing!");
				return form.submit();
			}
		}
		function GotFocus(field) {
			if (field.value == def) {
				field.value = '';
				field.style.color = 'black';
			}
		}
		function LostFocus(field) {
			if (field.value == '') {
				field.value = def;
				field.style.color = '#a6a6a6';
			}
		}