<!--
// DATE DE MISE A JOUR DU COCUMENT
function disp(txt){document.write(txt);}
function don_date_maj(){var date_maj=new Date(document.lastModified);date_maj=don_date_format(date_maj);return date_maj;}function don_date_jour(){var date_jour=new Date();date_jour=don_date_format(date_jour);return date_jour;}function don_date_format(d1){var m=new Array(13);m[1]="Janvier";m[2]="Février";m[3]="Mars";m[4]="Avril";m[5]="Mai";m[6]="Juin";m[7]="Juillet";m[8]="Aout";m[9]="Septembre";m[10]="Octobre";m[11]="Novembre";m[12]="Décembre";var d=new Array(8);d[1]="Dimanche";d[2]="Lundi";d[3]="Mardi";d[4]="Mercredi";d[5]="Jeudi";d[6]="Vendredi";d[7]="Samedi";var mois=m[d1.getMonth()+1];var jour=d[d1.getDay()+1];var date=d1.getDate();var an=d1.getYear();if(an<200)an=1900+an;date=jour+" "+date+" "+mois+" "+an;return date;}

// SUPPRESSION DE LA SELECTION A LA SOURIS
function disableselect(e){return false}
function reEnable(){return true}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

// NE MENTIONNE PAS LES ERREURS JAVASCRIPT
function stopError() {return true;}
window.onerror = stopError;

// INTERDICTION D'UTILISER LE BOUTON DROIT DE LA SOURIS
function click()
{
if (event.button==2) {alert('Pas touche, petit canaillou !')}
if (event.button==1+2) {alert('Non, non! On ne touche pas, chenapan !')}
}
document.onmousedown=click;

// REINITIALISATION DES FRAMES SI PAGE SEULE


// SELECTION ET COPIE DANS LE PRESSE PAPIER DU CONTENU D'UN FORMULAIRE
var copytoclip=1
function copier(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Contents highlighted and copied to clipboard!"
setTimeout("window.status=''",2400);
}
}

//-->

