var tabb=new Array("images/bandeau/image1.jpg",
					"images/bandeau/image2.jpg",
					"images/bandeau/image3.jpg",
					"images/bandeau/image4.jpg",
					"images/bandeau/image5.jpg",
					"images/bandeau/image6.jpg",
					"images/bandeau/image7.jpg"
				);

function PopUpWindow(url)
{
	//alert("");
	window.open(url, "_blank", 'width=550, height=400, resizable=no, scrollbars=no, menubar=no, toolbar=no, directories=no, location=no, status=no');
}

function nouvelleImage()
{
	var indice=0;
	var range=7;
	
	if (Math.random)
		indice = Math.round(Math.random() * (range-1));
	else
	{
		var now = new Date();
		indice = (now.getTime() / 1000) % range;
	}
	document.images['imgbandeau'].src=tabb[indice];
}

function myload()
{
	nouvelleImage();
	//setInterval("nouvelleImage();", 10000);
}

function myload_index()
{
	PopUpWindow("http://f.diebold.free.fr");
	//nouvelleImage();
}


