﻿/*-------------------------------
	Copyright (c) 2004-2005 Eira inc.
	http://www.origano.com
	Tous droits réservés pour tous pays
	All rights reserved for all countries
-------------------------------*/
var pgeLng;
var nbrJrs=10950;
var hor=null;
function decrementerJours(){var nbrChn='';var sepMil=((pgeLng=='f')?' ':',');nbrJrs--;
if(nbrJrs<0){
document.getElementById('divNbrJrs').style.visibility='hidden';
if(hor!=null){window.clearInterval(hor);hor=null;}
return;
}
nbrChn=nbrJrs.toString(10);
if(nbrJrs>=10000){nbrChn=nbrChn.substr(0,2)+sepMil+nbrChn.substr(2,3)}
else{if(nbrJrs>=1000){nbrChn=nbrChn.substr(0,1)+sepMil+nbrChn.substr(1,3)}}
document.getElementById('divNbrJrs').innerHTML=nbrChn;
}
function initPg(lng){
pgeLng=lng;
if(hor==null)hor=window.setInterval("decrementerJours()",250);
window.onresize=xReDim;
}

