
<!--

function popen (popupName, x, y, scroll) {
  window.open(popupName, "pop", "resizable=no,left=0,top=0,toolbar=no,menubar=no,location=no,directories=no,status=no,height=" + y + ",width=" + x + ",scrollbars=" + scroll);
}
//
// Fonction de redirection
//
function redirect(page, wtarget) {
	if (wtarget == undefined) {
		wtarget = "_self";
	}
	top.location.href=page;
	top.location.target=wtarget;
}
//
// Fonction arondissant les bordures : IE + FF
//
function roundBorder (mydiv) {
	settings = {
		tl: { radius: 10 },
		tr: { radius: 10 },
		bl: { radius: 10 },
		br: { radius: 10 },
		antiAlias: true,
		autoPad: true,
		validTags: ['div']
	}
	/*
	Usage:
	newCornersObj = new curvyCorners(settingsObj, classNameStr);
	newCornersObj = new curvyCorners(settingsObj, divObj1[, divObj2[, divObj3[, . . . [, divObjN]]]]);
	*/
	var myBoxObject = new curvyCorners(settings, mydiv);
	myBoxObject.applyCornersToAll();
}

//
// Affiche le <div> correspondant suivant que la personne coche la case NPAI ou non
//
function displayContact (btn,div) {
	if (btn.checked == 1){
		document.getElementById(div).style.display = "none";

	}
	else {
			document.getElementById(div).style.display = "block";
	}
}
//-->

