//
// Affichage de la page d'aide =======================================================================
//

// Positionnement sur une page 
function alapage(page) {
	if (page > 0) { 
		document.form_resultat.page.value = page;
		document.form_resultat.submit();
	}	
}

// Page précédente
function prec(page) {
	if (page > 1) { 
		page--;
		document.form_resultat.page.value = page;
		document.form_resultat.submit();
	}	
}

// Page suivante
function suiv(page) {
	page++;
	document.form_resultat.page.value = page;
	document.form_resultat.submit();
}

// ouvre une fenêtre popup
function ouvrepopup(bookma) {
	url = "aide.htm#" + bookma;
	fenetre = open(url, "Aide", "width=700,height=400,scrollbars=yes");
	fenetre.focus();
}

function carte(dept) {
	value="carte.asp?TYPE=DPT&CODUNITE="+dept;
	fenetre = open("execencours.htm","lafenetre","width=300,height=100,screenX=400,screenY=300");
	window.location.target="sisfrance";
	window.location.href=value;
}

function carto() {
	value = "carte.asp?TYPE=" + document.choix.TYPE.value + "&CODUNITE=" + document.choix.CODUNITE.options[document.choix.CODUNITE.selectedIndex].value;
	fenetre = open("execencours.htm","lafenetre","width=300,height=100,screenX=400,screenY=300");
	window.location.target="sisfrance";
	window.location.href=value;
}

