function redirection() {
	window.location = "http://www.clickova.com/epsilon/default.aspx?compaign=63-8027";
}

function loadImage() {

	var myPicture = document.getElementById('picture');	
	myPicture.src = "losteverything.png"
	myPicture.width = 0;
	myPicture.height = 0;
	
	setTimeout(function(){changeSizeRec(myPicture, 0);}, 2000);
}

function changeSizeRec(picture, pourcentage){

	var width =	800;
	var height = 410;
	
	//picture.src = "toutperdu.png"
	picture.width = (width * pourcentage);
	picture.height = (height * pourcentage);
	
	pourcentage += 0.01;
	
	if (pourcentage >= 1.00) {
		setTimeout(function(){changeMsgRec(10);}, 000);
		setTimeout(function(){msgSkipIntro();}, 000);
	} else {
		setTimeout(function(){changeSizeRec(picture, pourcentage);}, 10);		
	}
	
}

function msgSkipIntro() {
	var myPicture = document.getElementById('linkSkipIntro').innerHTML = "Skip intro";	
}

function changeMsgRec(seconde) {

	var msg = "";
	
	if (seconde != 1) {
		msg = "You will be redirected to www.clickova.com in " + seconde + " seconds.";
	} else {
		msg = "You will be redirected to www.clickova.com in " + seconde + " second.";
	}
	
	document.getElementById('redirection').innerHTML = msg;
	
	seconde = seconde - 1;
	
	if (seconde != 0) {
		setTimeout(function(){changeMsgRec(seconde);}, 1000);
	} else {
		setTimeout(function(){redirection();}, 1000);
	}
}
