// JavaScript Document

function sendCoordForm(nform){
	
	prenom = nform.prenom.value;
	nom = nform.nom.value;
	courriel = nform.courriel.value;
	nform.sent.value = 1;

	if ((prenom == "") || (nom == "") || (courriel == "") || (courriel == "@")){
		window.alert("Les champs marqués d'un * sont obligatoires !");
		return false;
	
	}else {
		nform.submit();
	}

}

function centerwindow(theurl,wname,width,height,options) {
    x = (640 - width)/2, y = (480 - height)/2;

    if (screen) {
        y = (screen.availHeight - height)/2;
        x = (screen.availWidth - width)/2;
    }
        if (screen.availWidth > 1800) { 
        x = ((screen.availWidth/2) - width)/2; 
    } 

	theurl = theurl + location.search ;

	if (options != ""){
		options = "," + options ;
	}
	openWin = window.open(theurl, wname, 'width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x + options); 
	if(openWin.window.focus){openWin.window.focus();}

}

