
function onButton( obj )
{
	obj.style.backgroundColor='#99CCFF';
	obj.style.color='#3f3a3a';
}


function offButton( obj )
{
	obj.style.backgroundColor='#006699';
	obj.style.color='#ffffff';
}


function affichePalmares(fichier)
{
	var pdfWindow = window.open(fichier,"Résultats GPP", scrollbars=0,
							    toolbar=0, menubar=0,directories=0);
}

function ouvre()
{
	var blocImage = document.getElementsByName("imageDiaporama");
	var nbrImage = document.getElementsByName("nbrImagesDiaporama");
	var path = document.getElementsByName("path");
	var id = document.getElementsByName("idPhoto");
	if( id[0].value == nbrImage[0].value )
	{
		id[0].value = 1;
	}
	else
		id[0].value++;
	
	var image2 = document.getElementsByName("imageDiaporama"+id[0].value);
	
	blocImage[0].src = path[0].value + "/admin/images/diaporama_installations/"+image2[0].value;
	
	timeoutID = window.setTimeout("window.ouvre()",5000);
}

function Timer()
{
	// Note : temps en ms
	timeoutID = window.setTimeout("window.ouvre()",5000);
}
