// 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
}

/* 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>")

