<!--
//------------------------------------------------------------------------------
function NoError()
{
return true;
}
window.onerror = NoError;
//------------------------------------------------------------------------------
function noter(id) {
var posh = (screen.width-200)/2;
var posv = (screen.height-120)/2;

window.open(id, 'not', 'left='+posh+', top='+posv+', width=200, height=120, toolbar=no, menubar=no, status=yes, scrollbars=no, resizable=yes');
}
//------------------------------------------------------------------------------
function confirmer(lien, msg){
  a = confirm(msg);
  if (a == true) {
    lien.href = lien;
  } else {
    return false;
  }
}
//------------------------------------------------------------------------------
function addEngine(name,cat)
{
  if ((typeof window.sidebar == "object") && (typeof
  window.sidebar.addSearchEngine == "function"))
  {
    //cat="Web";
    //cat=prompt("In what category should this engine be installed?","Web")
    window.sidebar.addSearchEngine(
      "http://www.pourtapageweb.com/modules/plugins/"+name+".src",
      "http://www.pourtapageweb.com/modules/plugins/"+name+".gif",
      name,
      cat );
  }
}
//------------------------------------------------------------------------------
function montrer_menu(){
        var mn = "palette";
        document.getElementById(mn).style.display = 'block';
}
function masquer_menu(){
        var mn = "espace_membre";
        document.getElementById(mn).style.display = 'none';
}
// -->
