/* FICHIER DE SCRIPTS COMMUNS A LA SECTION HEAD */

function stopErrors() { return true; }
window.onError = stopErrors;

/* barre de statut */
window.status= document.title;

/* Début Popup message */
function menumap(contenu, status)
  {
      if(status != 0)
      {
        if(menumap != null) menumap.focus();
        else
        {
          var menumap = open('', 'menumap', 'width=300' + ',height=150');
          menumap_window = menumap;
          menumap.document.open();
          menumap.document.writeln('<html><head><title>Chez Fred</title></head><body bgcolor="#2D6FD3" text="white">');
          menumap.document.writeln('<CENTER><table height="90%" border="0"><tr><td valign="middle"><FONT face="Comic Sans MS,Times New Roman,Arial" size=2>' + contenu + '</FONT></td></tr></table></CENTER>');
          menumap.document.writeln('</body></html>');
          menumap.document.close();
        }
      }
      else
      {
       if(menumap_window != null) menumap_window.close();
      }
 }


var version = 0;
if(navigator.appName.indexOf("Netscape") >= 0 ||
navigator.appName.indexOf("Explorer") >= 0)
{
if((navigator.userAgent.indexOf("Mozilla/3.0")>= 0)||(navigator.userAgent.indexOf("Mozilla/4.0")>= 0))
{
version = 3;
if (navigator.userAgent.indexOf("Macintosh") != -1) 
{
version = 4;
}


} 
else if( navigator.userAgent.indexOf("Mozilla/2") >= 0 ) 
{
version = 2;
} 
else version = 2;
} 
else version = 1;
function mouseover(name,img){
if (version >= 3 ) //&& navigator.userAgent.indexOf("MSIE 3.0") < 0){


document.images[name].src = eval(img + '.src')
}
/* Fin Popup message */


/* Debut blocage click droit */
function click()
{
if ((event.button==2) || (event.button==3))
{
alert('Tsss, tsss...Ask first if you want to copy something !!!');
}
}
document.onmousedown=click
/* Fin blocage click droit */


