<!-- image aleatoire de l'index -->
son = new Array();
son[0] = './images/photo-index1.gif';
son[1] = './images/photo-index2.gif';
son[2] = './images/photo-index3.gif';
son[3] = './images/femmes_lettres.gif';
var nbre = son.length;
n = Math.floor(Math.random()* +nbre);

<!--Script d'ouverture de la fenêtre de recommandation-->
function NewWindow(url,hauteur,largeur) {
	var winl = (screen.width - largeur) / 2;
	var wint = (screen.height - hauteur) / 2;
	date_t = new Date;
	time = date_t.getTime();
	winprops = 'height='+hauteur+',width='+largeur+',top='+wint+',left='+winl+',scrollbars=1,resizable=yes'
	win = window.open(url, time, winprops)
	}


function champsok() {
	nom=document.formulaire.nom.value
	mail=document.formulaire.email.value
	mes=document.formulaire.message.value
	code=document.formulaire.code.value
	if (nom=="" || mail=="" || mes=="" || code=="") {
		alert('Merci de renseigner tous les champs.');
		return false;
		}
return true;
}

function bookmarksite(title, url){ 
if (document.all) 
window.external.AddFavorite(url, title); 
else if (window.sidebar) 
window.sidebar.addPanel(title, url, "") 
}

function copy2Clipboard(obj) 	{
  	var textRange = document.body.createTextRange();
  	textRange.moveToElementText(obj);
  	textRange.execCommand("Copy");
	}
	
function champsok2()
{
	nom=document.formulaire.nom.value
	mail=document.formulaire.mail.value
	if (nom=="" || mail=="") {
		alert('Merci de remplir tous les champs.');
		return false;
		}
return true;
}

