function ch_page(new_page) {
	document.location.href=new_page;
}

function verifier() {
	var regexp = /\w[\w\-\.]*@\w[\w\-\.]*\.[a-z]{2,}/i;
	var nom = document.getElementById('nom').value;
	var courriel = document.getElementById('courriel').value;
	var message = document.getElementById('message').value;
	if(nom == "") {
		alert('Veuillez indiquer votre nom!');
		document.getElementById('nom').focus();
		return false;
	}
	if(courriel != "") {
 		if(!regexp.test(courriel)) {
			alert('Adresse de courriel non valide!');
			document.getElementById('courriel').focus();
			return false;
  		}
 	} else {
		alert('Veuillez indiquer votre adresse courriel!');
		document.getElementById('courriel').focus();
		return false;
	}
	if(message == "") {
		alert('Message vide!');
		document.getElementById('message').focus();
		return false;
	}
	window.document.contact.submit();
}

function verif_projet() {
	var texte = document.getElementById('texte').value;
	if(texte == "") {
		alert('Veuillez écrire votre projet ou suggestion!');
		document.getElementById('texte').focus();
		return false;
	}
	window.document.projet.submit();
}

function newscreen(page) {
	opt="toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=650,height=400";
	pt = page.lastIndexOf(".");
	window.open(page,'popup', opt);
}

function morph() {
	var busy = false, gallery = $('gallery'); 
	var image = '/images/' + 'morph1.jpg';
	gallery.setStyles({'opacity': 0, 'display': 'block'});

	new Asset.images(image, {
		onProgress: function(i) {
			this.setStyles({
				'position': 'absolute',
				'opacity': 100,
				'left': (gallery.getCoordinates().width / 2) - (this.width / 2),
				'top': (gallery.getCoordinates().height / 2) - (this.height / 2)
			});
		},
		onComplete: function() {
			var myTimer = morph_on.delay(5000);
		}
	});

	function morph_on() {
			var fx = $('gallery').effect('opacity', {duration:2000}).start(1);
			var myTimer2 = morph_off.delay(5000);
	}
	function morph_off() {
			var fx = $('gallery').effect('opacity', {duration:2000}).start(0);
			var myTimer2 = morph_on.delay(5000);
	}
}

function verif_chg_add() {
	var nmr_dos = document.getElementById('numero_de_dossier').value;
	var prenom = document.getElementById('prenom').value;
	var nom = document.getElementById('nom').value;
	var adresse = document.getElementById('adresse_1').value;
	var ville = document.getElementById('ville').value;
	var province = document.getElementById('province').value;
	var zip = document.getElementById('code_postal').value;
	var courriel = document.getElementById('courriel').value;
	var telephone = document.getElementById('telephone').value;
	var old_add = document.getElementById('ancienne_adresse').value;
	var effectif = document.getElementById('a_partir_de').value;
	if(
		nmr_dos == "" ||
		prenom == ""||
		nom == ""||
		adresse == ""||
		ville == ""||
		province == ""||
		zip == ""||
		courriel == ""||
		telephone == ""||
		old_add == ""||
		effectif == ""		
		) {
		alert('Formulaire incomplet!\nVeuillez remplir tous les champs avec un astérisque!');
		return false;
	}
	window.document.adresse.submit();
}
