function subscribe(email,notice){
	
	if (email.indexOf("@")>0){
		window.open("subscribe.php?email="+email+"&notice="+notice,"","toolbar=0, scrollbar=0, width=200, height=75");
	}else{
		alert("Is this really a well-formed email adress ?");
	}
}
