window.onload=function()
{
	//diapo();
}

animation_image_list = ["image/myreport-bref-diapo1.gif","image/myreport-webdemo-diapo2.gif","image/myreport-partenaires-diapo3.gif","image/myreport-contact-diapo4.gif"];
animation_lien_list = ["http://www.report-one.fr/p3-la-gamme","http://www.report-one.fr/p29-web-demos","http://www.report-one.fr/p4-report-one-et-la-distribution-indirecte","http://www.report-one.fr/p6-contact"];
var animation_index="0";
function ouvrir_image(image, lien)
{
	var auj=new Date();
	document.getElementById('animation_flash').innerHTML='<a href="'+lien+'" target="_blank"><img src="'+image+'?'+auj.getTime()+'"/></a>';
}
function diapo()
{
	if(animation_index==animation_image_list.length)
	{
		ouvrir_image(animation_image_list[0],animation_lien_list[0]);
		animation_index="0";
	}
	else
	{
		ouvrir_image(animation_image_list[animation_index],animation_lien_list[animation_index]);
		animation_index++;
	}
}

function voir_cacher(id)
{
	if (id.style.display=='') {
		id.style.display='none';}
	else {
		id.style.display='';}
}
