function display_current_date(lang){
	var myDate = new Date()
	var day = myDate.getDate()
	var month = myDate.getMonth()+1
	var year = myDate.getFullYear()
	
	if(lang == "french"){
		if(month == 1){month = "Janvier"}
		if(month == 2){month = "Fevrier"}
		if(month == 3){month = "Mars"}
		if(month == 4){month = "Avril"}
		if(month == 5){month = "Mai"}
		if(month == 6){month = "Juin"}
		if(month == 7){month = "Juillet"}
		if(month == 8){month = "A&ocirc;ut"}
		if(month == 9){month = "Septembre"}
		if(month == 10){month = "Octobre"}
		if(month == 11){month = "Novembre"}
		if(month == 12){month = "D&eacute;cembre"}
		document.write (day+" "+month+" "+year)
	}

	if(lang == "english"){
		if(month == 1){month = "January"}
		if(month == 2){month = "February"}
		if(month == 3){month = "March"}
		if(month == 4){month = "April"}
		if(month == 5){month = "May"}
		if(month == 6){month = "June"}
		if(month == 7){month = "July"}
		if(month == 8){month = "August"}
		if(month == 9){month = "September"}
		if(month == 10){month = "October"}
		if(month == 11){month = "November"}
		if(month == 12){month = "December"}
	
		document.write (month+" "+day+" "+year)
	}


}


function NewWindow(mypage, myname, w, h, scroll) 
	{
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable';
		win = window.open(mypage, myname, winprops);
		if (parseInt(navigator.appVersion) >= 4) 
			{ 
				win.window.focus();
		}
	}

function validateForm() {
		
					if (document.contact_form.name.value == "")
					{
					alert ("Veuillez saisir votre nom svp !");
					document.contact_form.name.focus();
					return false;
					}
								
					if (document.contact_form.email.value == "")
					{
					alert ("Veuillez saisir votre email svp !");
					document.contact_form.email.focus();
					return false;
					}
					
					if (document.contact_form.email.value != "") {
							var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
							if(document.contact_form.email.value.match(emailExp)){
							} else {
									alert('Veuillez saisir un email valide svp !');
									document.contact_form.email.focus();
									return false;
							}
					}

					if (document.contact_form.comments.value == "")
					{
					alert ("Veuillez saisir votre message svp !");
					document.contact_form.comments.focus();
					return false;
					}

}

