<!--
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};

// Fenetre popup des references
function openWindowRef(id_rub,id_ref,lang) { //v2.0
	var optionFenetre = ', width=550, height=550, top=0,left=0, status=0, directories=0, toolbar=0, location=0, menubar=0, scrollbars=1, resizable=1';
	var fenetre = window.open('../popup/references.php?id_rub='+id_rub+'&id_ref='+id_ref+'&lang='+lang,'references',optionFenetre);
//	fille=window.open(url,fenetre,params);
}

//-->