function affich_fen(adresse,h,w) {
	window.open(adresse,"OartYu","height="+h+",width="+w+",scrollbars=yes");
}
function affich_fen_resizable(adresse,h,w) {
	window.open(adresse,"OartYu","height="+h+",width="+w+",scrollbars=yes,resizable=yes");
}

function confirmation(adr,mode,formul) {
	if(confirm('Est-vous certain de vouloir ' + mode + ' cet enregistrement ?')) {
		if(formul != null) {
			formul.action = adr;
			formul.submit();
		}
		else {
			document.location = adr;
		}
	}
}

function zoom(adrimg) {
	affich_fen_resizable(adrimg,600,800);
}
function test_lien(url) {
	window.open(url,"testLien");
}

// elements de formulaire
function optionlierchange(objlier,option) { // met le input text ˆ la valeur du select
	document.getElementById(objlier).value = option.value;
}

function initlier(objlier) {
	document.getElementById(objlier).selectedIndex = 0;
}

function note(txt) {
	//alert(txt);
	document.getElementById("note").innerHTML = txt;
}


function aller_cat(adresse) {
	document.location = adresse;
}

function ge(id) {
	return document.getElementById(id);	
}
