function popup(aURL, aWidth, aHeight) {  window.open(aURL, '_blank', 'width=' + aWidth + ', height=' + aHeight); }  function popup_glossaire(aURL) {  popup(aURL, '300', '230'); }  function escapeText(text) {  return text.replace("'", "\\'"); }  function formatLink(href, target, title) {  var temp;  temp = '<a href="' + href + '"';  if (target.length > 0) {   temp += ' target="' + target + '"';  }  temp += ' onMouseOver="window.status=\'' + escapeText(title) + '\'; return true" onMouseOut="window.status=\'\';return true">' + title + '</a>';  document.write(temp); }  function formatLinkwHelp(href, target, title, help) {  var temp;  temp = '<a href="' + href + '"';  if (target.length > 0) {   temp += ' target="' + target + '"';  }  if (help.length > 0) {   temp += ' title="' + help + '"';  }  temp += ' onMouseOver="window.status=\'' + escapeText(title) + '\'; return true" onMouseOut="window.status=\'\';return true">' + title + '</a>';  document.write(temp); }  function formatLink0(href, target, title) {  document.write('<a href="' + href + '" target="' + target + '" title="' + title + '" onMouseOver="window.status=\'' + escapeText(title) + '\'; return true" onMouseOut="window.status=\'\';return true">' + title + '</a>'); } 