function submitForm(form) {
	if (check_required(form.name)) {
		form.submit();
	window.open('/newsletter_thankyou_test.html','_blank','width=300px,height=200px,top=100px,left=100px,scrollbars=0,toolbar=0,location=0,status=0,menubar=0');
		setTimeout("form.submit();", 5000);
  	form.reset();
		return true;
	}
	else
		return false;
}

/* Pops up form submission thank you page in a new window, clears out fields where info was entered. */
function formResponse(form) {
	form.submit;

	window.open('/newsletter_thankyou_main.html','_blank','width=300px,height=200px,top=100px,left=100px,scrollbars=0,toolbar=0,location=0,status=0,menubar=0');
	form.reset();
}