photos=new Array;
photos[1]='../util/photo1grand.jpg';
photos[2]='../util/photo2grand.jpg';
photos[3]='../util/photo3grand.jpg';
photos[4]='../util/photo4grand.jpg';
photos[5]='../util/photo5grand.jpg';
photos[6]='../util/photo6grand.jpg';	

function pop(position, compteur)
{
	if(position=="vertical")
	{
		new_window=window.open("about:blank","_blank","width=270, height=550, resizable=yes, toolbar=none, menubar=none, status=none" );
	}
	else if (position=="horizontal")
	{
		new_window=window.open("about:blank","_blank","width=400, height=400, resizable=yes, toolbar=none, menubar=none, status=none" );
	}
	else alert('Faute de frappe dans le format de la photo...');
	new_window.document.write('<html><head><title>photos</title></head>');
	new_window.document.write('<body leftmargin="0" topmargin="0" bgcolor="#000000"><div align="center"><a href="javascript:self.close();"><img align="top" src="'+photos[compteur]+'" border="0"/></a></div>');
	new_window.document.write('<font face="tahoma" color="white">Télécharger cette photo :</font><br><font face="tahoma" color="white"><font face="tahoma" color="white">au format BMP (1,5 Mo) : </font><a href="../util/photo'+compteur+'.bmp">BMP</a>');
	new_window.document.write('</body></html>');
}