// JavaScript Document
function Imprimpage() {
window.print();  
}
function OuvrirPopup(page,nom,largeur,hauteur,droite,top) {
	option = "toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=yes, copyhistory=no, width="+largeur+", height="+hauteur+", right="+droite+", top="+top;
    window.open(page,nom,option);
}
function Zoom(url, larg, haut) {
cond = "scrollbars=yes,width="+larg+", height="+haut+", left=10, top=10";
	window.open(url,'Agrandissement',cond);
}

function affiche_form(form) {
	if(form == 'carte') {
		document.getElementById('formchek').style.display='none';
		document.getElementById('formcard').style.display='block';
	}
	else {
		document.getElementById('formcard').style.display='none';
		document.getElementById('formchek').style.display='block';
	}
}