function redimentionFlash(heigt) {
	 hautDePage();
	/*var dif=document.getElementById("lyra").height-heigt;
	
	if (dif>0) {
		if (dif<=5) {*/
			document.getElementById("lyra").height=heigt;
	/*	} else {
			var grr=document.getElementById("lyra").height;
			document.getElementById("lyra").height=grr-5;
			window.setTimeout("redimentionFlash('"+heigt+"')",40);
		}
	} else if (dif<0) {
		if (dif>=-5) {
			document.getElementById("lyra").height=heigt;
		} else {
			var grr=document.getElementById("lyra").height;
			document.getElementById("lyra").height=Math.ceil(grr)+5;
			window.setTimeout("redimentionFlash('"+heigt+"')",40);
		}
	}*/
}
function hautDePage() {
	//alert('haut'+document.body.scrollTop);
	if (document.body.scrollTop>5) {
		document.body.scrollTop-=15;
		window.setTimeout("hautDePage()",1);
	} 
}
