var changing_imgs = new Array();

function changeImage(index, i, nbmini, path)
{
	if (changing_imgs[index])
	{
		image_chargement_id = (i + 1) % nbmini;
		
		document.getElementById(index).src = path + "/"+ index + "_" + i + ".jpg";
		document.getElementById("image_preload").src = path + "/"+ index + "_" + image_chargement_id + ".jpg";

		i = i % (nbmini - 1);
		i++;
		
		setTimeout("changeImage('" + index + "'," + i + ", " + nbmini + ", '" + path + "')", 850);		
	}
}
	
function startImageChange(index, nbmini, path)
{	
	if (0 != nbmini){
		changing_imgs[index] = true;
		changeImage(index, 0, nbmini, path.substring(0,path.lastIndexOf("/")));
	}
}

function stopImageChange(index, path)
{
	changing_imgs[index] = false;
	document.getElementById(index).src = path;
}
/*
function entrer()
{
	document.getElementById('authorisation').style.display = 'none';
	//var url = new Array();	
//	url[0] = 'http://hits.porn.fr/hit.php?&gto=pdv&im=1&pr=10&of=12&tor=rebill&groupeproduit=1&p=3864&em=11026&tl=prelive_popunder_exfemme&n=113&pdp=&i=77467';
	//url[1] = 'http://hits.porn.fr/hit.php?&gto=pdv&im=1&pr=9&of=10&tor=rebill&groupeproduit=1&p=3864&em=11268&tl=prlive-popunder&n=113&pdp=&i=77467';
//	url[1] = 'http://www.espace-plus.net/redir/rotation_redir.php?id_rotation=90&id=60228&e=1&w=0&tracker=prlivepopunder';
//	url[0] = 'http://sexy.wechat.fr';
//	url[5] = 'http://sexy.wechat.fr/?tc=popunder';
//	exit_win = window.open(url[Math.floor(Math.random()*2)],"","width="+screen.width+',height='+screen.height+",toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,copyhistory=yes,menuBar=yes");
	
//	window.focus();
}
*/