function gotoliste(idth){
	document.frm_gotoliste.IdTheme.value = idth;
	document.frm_gotoliste.submit();
}
function gotolisteprod(idpr){
	document.frm_gotolisteprod.ListIdProduit.value = idpr;
	document.frm_gotolisteprod.submit();
}
function gotolistenosth(){
	document.frm_gotolistenosth.submit();
}
function gotonews(){
	var mail_OK = true;
	var txtmail = document.frm_newsletter.Email.value;
	if(txtmail == '' || !txtmail.match(/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/)){
		alert("Merci de saisir une adresse mail correcte");
		document.frm_newsletter.Email.focus();
		mail_OK = false;
		return false;
	}
	if(mail_OK == true){
		document.frm_newsletter.submit();
	}
}