// JavaScript : Common Script
	function Newsletter() {
		
      if ((document.NewsletterForm.email.value.indexOf("@")>=0)&&(document.NewsletterForm.email.value.indexOf(".")>=0)) {
									window.open('','popup','width=330, height=200, top=250, left=300, scrollbars=no, menubar=no');
	        document.NewsletterForm.submit();
      } else {
         alert("Mail invalide !");
      }
		
		}


 function setSuperTheme(theSuperTheme) {
				 document.superThemeForm.superTheme.value = theSuperTheme;
					document.superThemeForm.submit();
		}