function MakeArray(n) {
 this.length = n
 return this
}

function infolegales(){
 window.open("infolegales.html","infolegales","width=300,height=280,toolbar=no,resizable=yes,scrollbars=no")
}

var dragapproved=false
var z1,x1,y1
function move(){
 if (event.button==1&&dragapproved){
  z1.style.pixelLeft=temp1+event.clientX-x1
  z1.style.pixelTop=temp2+event.clientY-y1
  return false
 }
}

function drags(){
 if (!document.all)
  return
 if (event.srcElement.className=="drag"){
  dragapproved=true
  z1=event.srcElement
  temp1=z1.style.pixelLeft
  temp2=z1.style.pixelTop
  x1=event.clientX
  y1=event.clientY
 document.onmousemove=move
 }
}

document.onmousedown=drags
document.onmouseup=new Function("dragapproved=false")

monthNames=new MakeArray(12)
monthNames[1]="janvier"
monthNames[2]="f&eacute;vrier"
monthNames[3]="mars"
monthNames[4]="avril"
monthNames[5]="mai"
monthNames[6]="juin"
monthNames[7]="juillet"
monthNames[8]="ao&ucirc;t"
monthNames[9]="septembre"
monthNames[10]="octobre"
monthNames[11]="novembre"
monthNames[12]="décembre"

dayNames=new MakeArray(7)
dayNames[1]="dimanche"
dayNames[2]="lundi"
dayNames[3]="mardi"
dayNames[4]="mercredi"
dayNames[5]="jeudi"
dayNames[6]="vendredi"
dayNames[7]="samedi"

update=new Date(document.lastModified)
theDay=dayNames[update.getDay() + 1]
theMonth=monthNames[update.getMonth() + 1]
theYear=update.getYear()
if (theYear < 1000) {
 if (theYear <= 100) {
  theYear+=1900
 }
 else {
  theYear+=2000
 }
}