function email(){
	var base="@";var protocolecourriel="mailto:";
	document.write('<a href="' + protocolecourriel + 'cttpresgaux' + base + 'be.tf">Contact</A>');
}
function toDay(){
    var aDate = new Date();
	dayOfMonth = leadingZero(aDate.getDate());
	year= aDate.getFullYear();
	date = "01/"+ aDate.getMonth() +"/" + year;
}
function leadingZero(input){
	if(input.length < 2 || input <= 9) input = "0" +input;
		return input
}
function showBody(){
	if(document.getElementById("loader")!=null){
 		document.getElementById("loader").innerHTML="";
 		document.getElementById("loader").style.display="none";
 	}	
 	if(document.getElementById("container")!=null)
 		document.getElementById("container").style.display="block";
 	return true;	
}
