// Au chargement de la page, on appelle la fonction


function Timer() {
    var today=new Date();
    var now = Math.floor(today.getTime() / 1000);
    var open=new Date();
    open.setDate(13);
    open.setMonth(1);
    open.setFullYear(2010);
    open.setHours(16);
    open.setMinutes(0);
    open.setSeconds(0);
    var dday = Math.floor(open.getTime() / 1000);

    var duree = dday - now;
    var j = Math.floor(duree/86400);
    var h = Math.floor((duree%86400)/3600);
    var m = Math.floor(((duree%86400)%3600)/60);
    var s = ((duree%86400)%3600)%60;
    //alert("dday :"+dday+"now :"+now+"duree :"+duree);

 if (duree>0) {
    	document.getElementById('CReboursDIV').innerHTML='The Open will start in '+((j!=0) ? j+' days, ' : '')+((h!=0) ? h+' hours, ' : '')+((m!=0) ? m+' minutes and ': '')+s+' seconds.';
    	setTimeout("Timer()",1000);
    }
    else document.getElementById('CReboursDIV').innerHTML='<a href="http://www.cappelle-chess.fr/live2010/">Watch the live</a>';
}

function CRebours() {
	var zone = document.createElement('div');
	zone.id='CReboursDIV';
	zone.style.height='35px';
	zone.style.width='300px';
	zone.style.overflow='auto';
	zone.style.display='block';
	zone.style.position='absolute';
	zone.style.padding='1px';
	zone.style.textAlign='center';
	zone.style.color='black';
	zone.style.backgroundColor='#FFF';
	zone.style.borderTop='1px solid #DCDCDC';
	zone.style.borderRight='1px solid #A9A9A9';
	zone.style.borderBottom='1px solid #808080';
	zone.style.borderLeft='1px solid #A9A9A9';
	zone.style.left=((document.body.offsetWidth/2)-200)+'px';
	zone.style.top='220px';
	document.body.appendChild(zone);
	Timer();
}
