// Process subscriptions ==================================================
// -------------------------------------------------------------------------------------
// This script should be called at the end of the page containing the subscription form.
// -------------------------------------------------------------------------------------

<!--
function subscribeOnSubmit(){
	var myForm=document.getElementById("form1");
	var SS= Spry.Widget.Form.validate(myForm);
	if(SS==true){
		myForm.submit();
	}
}
//function unsubscribeOnSubmit(){
//	var myForm=document.getElementById("form1");
//	var SS= Spry.Widget.Form.validate(myForm);
//	if(SS==true){
//		myForm.action="unsubscribe.php";
//		myForm.submit();
//	}
//}
//-->

var mail = window.location.search.substring(6);
if (mail=="sub") {
		alert("Thank you for your subscription! Please confirm your email address by replying to the confirmation email.");
}
if (mail=="unsub") {
		alert("We're sorry to see you go! We'll process your request as soon as possible.");
}
if (mail=="failed") {
		alert("Your subscription has not been sent! Please try again.");
		document.getElementById('form1').email.focus();
}

