// on initialise le compteur d'images
var compteur = 0;

// le nombre total d'images
var total_img = 14;

// on cree la liste des messages relatifs aux images
message = new Array(total_img)
message[1] = "1/14: A white dog with black spots? This is a shortened vision far from this success of the creation. Dog with slim and elegant morphology, the dalmatien is distinguished from his canine brothers by his white dress trimmed with curious spots drawn that and there, by a whim of the nature, which forces the attention of the dog lovers. There are not two dalmatians identical. They are characterized in particular by the distribution of their spots, which is besides, one of the race criteria of beauty.";
message[2] = "2/14: The dalmatien is a very active dog. it will make the happiness of the sportsmen. If its Master is going on foot, riding a horse or a bicycle, his best friend will always follow him. Of a nature rather reserved with a stranger, it is a very good watchdog, without aggressiveness, but not failing to announce any unusual event occurring to the house.";
message[3] = "3/14: He adores company, it is a great sentimental, which likes to live in couple, but can be very possessive towards its Master. One of its characteristics very nice, is to smile by raising a little its chops to have fun with its Master. It is a pleasant dog of family, player and sociable. A little vivacious in its youth, it makes a wise adult at the house, in so far as it can express his dynamism outside.";
message[4] = "4/14: Walt Disney, with his film (the 101 dalmatiens), contributed well to his notoriety, and the passion which it enjoys today. It must be emphasized that this film, as the following, if they are a product of theircreator's imagination, reflect nevertheless truly the sensitivity, the intelligence and the courage of this dog out of the ordinary.";
message[5] = "5/14: There is no happy owner of dalmatien which would contradict these remarks. But beware of utopia: to have 101 of these adorable doggies at the house, is an impossible dream, insofar as the dalmatian is not a dog living in pack, and that it would not know how to beam, within a too numerous group.";
message[6] = "6/14: Some physical considerations, to finish this rapid presentation our four-legged friend: the heigh is between 58 to 61 centimetres for the male and from 56 to 58 centimetres for the female, with a respective weight of about 27 kg for the first and 25 kg for the second.";
message[7] = "7/14: On the other hand, it is interesting to indicate that there are 2 colours for the dress of the dalmatian: the white one with black spots, but also, much less known, and quite as majestic, the white with brown spots, named liver (with as a free gift, a brown nose also).";
message[8] = "8/14: Origin of Dalmatian: Representations of dalmatians, on tombs of old Egypt Pharaons, and reproductions coming from ancient Greece, indicate that the dalmatian has existed for several millenia. So it is possible to think that it comes from the Mediterranean basin.";
message[9] = "9/14: Source Croatian Embassy in France: As her name indicates it, Dalmatie, coastal area of Croatia, is the birthplace of this atypical dog, which was formerly employed as watchdog in the borders of Croatia and Dalmatie. It was in particular used, during the war against the Turks. The Croats, less numerous, had trained them to attack the horses of the Ottoman army, before the battle, to disorganize their cavalry. The first description of Dalmatians in Croatia was made by the bishop Pétar in 1374.";
message[10] = "10/14: We can also see him very frequently illustrated on the blazon of certain Croatian nobles. Its white hair, with black spots, recognizable between all, allowed him undoubtedly to become the hero of the famous Walt Disney cartoon, the 101 Dalmatians.";
message[11] = "11/14: Prestige at park";
message[12] = "12/14: two sisters: Rosée and Rhéa";
message[13] = "13/14: Sydney training for show";
message[14] = "14/14: Prestige in holydays in Ardèche";

// La fonction pour faire monter le compteur
function monter() {
	compteur += 1;
	if ( compteur == (total_img + 1) ) {
		compteur = 1;
		}
	document.vignette.src = "diapodal/" + compteur + ".gif";
	document.formulaire.legende.value = message[compteur];
	}

// La fonction pour faire descendre le compteur
function descendre() {
	compteur += -1;
	if ( compteur == 0 ) {
		compteur = total_img;
		}
	document.vignette.src = "diapodal/" + compteur + ".gif";
	document.formulaire.legende.value = message[compteur];
	}

// La fonction de remise a zero
function zero() {
	document.vignette.src = "diapodal/0.gif";
	document.formulaire.legende.value = "";
	}