function replay() {

	cur = get_current_swf();
	animation.document.location = '../php/animation.php?h=' + h + '&c=' + c;
	selectName.selectedIndex = c + 1;

}

function suivant() {

	cur = get_current_swf();
	if ( c < max )
	{
		c++;
		animation.document.location = '../php/animation.php?h=' + h + '&c=' + c;
		selectName.selectedIndex = c + 1;
	}

}


function precedent() {

	cur = get_current_swf();
	if ( c > 0 )
	{
		c--;
		animation.document.location = '../php/animation.php?h=' + h + '&c=' + c;
		selectName.selectedIndex = c + 1;
	}

}


function get_current_swf() {

	h = animation.h;
	c = animation.c;
	max = animation.max;

}


function fleches() {
	c = top.animation.c;
	max = top.animation.max;
	parent.document.bonhomme_loupe.src = "../img/bh-7.gif";
	if (c >= max)
	{
		parent.document.myIMG.src = "../img/fleche_si.gif";
	} else {
		parent.document.myIMG.src = "../img/fleche_s.gif";
		setTimeout('setImage()',12000);
	}
	if (c == 0)
	{
		parent.document.flechep.src = "../img/fleche_pi.gif";
	} else {
		parent.document.flechep.src = "../img/fleche_p.gif";
	}
}


temp = (new Image()).src = "../img/fleche_s-c.gif";
function setImage() {
	parent.document.myIMG.src = "../img/fleche_s-c.gif";
	parent.document.bonhomme_loupe.src = "../img/bh-8.gif";
}