<!--
/************************/
/* Gestion du Diaporama */
/************************/

var current = 0;

//
// Ouverture de la fenêtre
//
function openDiaporama(version) {
	// alert(version);
	param ='width=720, height=540, toolbar=no, status=no, menubar=no, scrollbars=no, resizable=no';
	url = 'diaporama.aspx';
	if (version != '')
	{
	url = url + '?version=' + version;
	}
	// alert(url);
	diapo = window.open(url, 'diaporama', param);
}

//
// Aller à l'image suivante
//
function next() {
	if (document.formname.slide[current+1]) {
		document.images.show.src = 'images/diapo/attente.jpg';
		document.images.show.src = document.formname.slide[current+1].value;
		document.formname.slide.selectedIndex = ++current;
	}
	else {
		first();
	}
}

//
// Aller à l'image précédente
//
function previous() {
	if ((current-1) >= 0) {
		document.images.show.src = 'images/diapo/attente.jpg';
		document.images.show.src = document.formname.slide[current-1].value;
		document.formname.slide.selectedIndex = --current;
	}
	else {
		last();
	}
}

//
// Aller à la première image
//
function first() {
	current=0;
	document.images.show.src = 'images/diapo/attente.jpg';
	document.images.show.src = document.formname.slide[0].value;
	document.formname.slide.selectedIndex = 0;
}

//
// Aller à la dernière image
//
function last() {
	document.images.show.src = 'images/diapo/attente.jpg';
	current = (document.formname.slide.length-1);
	document.images.show.src = document.formname.slide[current].value;
	document.formname.slide.selectedIndex = current;
}

//
// Contrôle du bouton 
//
function ap(text) {
	if (text == 'Diaporama')
	{
		MM_swapImage('Commandes','','images/diapo/commandes_on.gif',1);
	}
	else
	{
		MM_swapImage('Commandes','','images/diapo/commandes_off.gif',1);
	}
	document.formname.slidebutton.value = (text != 'Diaporama') ? 'Diaporama' : 'Stop';
	rotate();
}

//
// Changer d'image
//	
function change() {
	document.images.show.src = 'images/diapo/attente.jpg';
	current = document.formname.slide.selectedIndex;
	document.images.show.src = document.formname.slide[current].value;
}

//
// Lecture automatique
//
function rotate() {
	if (document.formname.slidebutton.value == 'Stop') {
		document.images.show.src = 'images/diapo/attente.jpg';
		current = (current == document.formname.slide.length-1) ? 0 : current+1;
		document.images.show.src = document.formname.slide[current].value;
		document.formname.slide.selectedIndex = current;
		window.setTimeout('rotate()', 5000);
	}
}

//
// Aller à une image donnée
//
function go(ind){
	if(document.formname.slide[ind]) {
		// document.images.show.src = document.formname.slide[ind].value;
		document.formname.slide.selectedIndex = ind;
		change();
	}
}
//-->
