// Rˇalisˇ par Joel Dabin www.joeldabin.com

/* Interdire le click droit */
function disableselect(e){
return false
}
function reEnable(){
return true
}

/* Pour IE4+ */
document.onselectstart=new Function ("return false")
document.oncontextmenu=new Function ("return false")

/* Pour NS6 */
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

/* Rollover */
if(document.images) { 
bandeau  = new Image
bandeau.src = "img/bandeau/bandeau_roll.png"
}

// Mise en page center
document.write("<table border=0 cellspacing=0 cellpadding=0 width=970px align=center><tr><td rowspan=0 valign=center><div align=center><meta http-equiv=imagetoolbar content=no>")

// Affichage bandeau
document.write("<table border=0 cellspacing=0 cellpadding=0 align=center bgcolor=3333ff><tr><td rowspan=0 valign=center><a href='http://www.slis85.info' onMouseOver=bandeau.src='img/bandeau/bandeau_roll.png' onMouseOut=bandeau.src='img/bandeau/bandeau.png'><img src='img/bandeau/bandeau.png' alt=bandeau border=0 name=bandeau></a></table>")

