// affiche une photo dans une nouvelle page 
// la taille de la page s'adapte automatiquement
function ImageMax(chemin)
   {
   i1 = new Image;
   i1.src = chemin;
   html = '<html><head><title>(C) Thierry Boucher 2003 - Marcel Dadi</title></head><body scroll="no" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" onBlur="top.close()"><IMG src="'+chemin+'" BORDER=0 NAME=ImageMax onLoad="window.resizeTo(document.ImageMax.width+10,document.ImageMax.height+30)"></body></html>';
   popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close()
   };


// Renvoie 1 si la résolution d'écran est inférieure à 1024*768
// ou 2 si la résolution est 1024*768 ou plus

function chercheresolution() { 
	var menu = "1"; 
	if(screen.width>=1024)
		menu = 2;
	else
		menu = 1;
	return menu; 
} 
