// JavaScript Document

function mailpage() {
	chaine_mail = "mailto:?subject=Europe locale";
	chaine_mail += "&body=Je te recommande cette page d'Europe locale : ";
	chaine_mail += ""+ location.href; 
	location.href = chaine_mail;
}

function fenCentre(url,largeur,hauteur)
{
	var Dessus=(screen.height/2)-(hauteur/2);
	var Gauche=(screen.width/2)-(largeur/2);
	var features= 'height='+hauteur+',width='+largeur+',top='+Dessus +',left='+Gauche+",scrollbars=yes";
	thewin=window.open(url,'',features);
}

