// Fonction popup zoom
function ouvre(item,wd,hg,men)
{
	az = "menubar=" + men + ",resizable=yes,toolbar=no,width=" + 500 + ",height=" + 500 + ",scrollbars=no";
	fiche = window.open(item,'zoom',az);
	fiche.focus();
};

// Fonction popup Savoir+
function savoirplus(item,wd,hg,men)
{
	az = "menubar=" + men + ",resizable=yes,toolbar=no,width=" + wd + ",height=" + hg + ",scrollbars=no";
	fiche = window.open(item,'savoirplus',az);
	fiche.focus();
};

//Fonction aller à une page
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}