// JavaScript Document

var EMAIL_CONTACT = "contact@terreboisetchaux.com"

function MailtoContact() {
	window.location = "mailto:" + EMAIL_CONTACT;
}

function fenetreCent(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}