function write_div(nom,texte)
{
	
	document.getElementById(nom).innerHTML = texte;
	
}

function ouvrir_fenetre(addr,nom,height,width) {

	var top=(screen.height-height)/2;
	var left=(screen.width-width)/2;

	var windowops = eval("'status=no,scrollbars=yes,top=" + top + ",left=" + left + ",height=" + height + ",width=" + width + "'");
	this.open(addr,nom,windowops);
}

function fermer_fenetre() {
	this.close();
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function menuredirect(selection){
window.location=selection.options[selection.selectedIndex].value;
}
