<!--

function checksize() 
{ 
	if (document.images[0].complete) 
	{ 
		if ( document.images[0].width < 250)
		{ window.resizeTo(document.images[0].width+250,document.images[0].height+190); window.focus(); }
		else
		{ window.resizeTo(document.images[0].width+120,document.images[0].height+190); window.focus(); }
	} 
	
}
	
var newWin = null;
function closeWin()
{
	if (newWin != null)
	{
		if(!newWin.closed)
		newWin.close();
	}
}

function popup(photo, largeur, hauteur)
{
	 
	 closeWin();
	 if (largeur < 250) { var largeur = 250; }
   var hauteur1 = (hauteur + 80);
   var largeur1 = (largeur + 20); 
   var top  = ( screen.availHeight - hauteur1 - 60) / 2; 
   var left = ( screen.availWidth - 530) / 2; 
 		var pagephoto =  './afficher_photos.php?photo=' + photo ;
  
   newWin = window.open(pagephoto, 'newWin', 'width='+largeur1+', height='+hauteur1+', top='+top+', left='+left+', status=no, directories=no, toolbar=no, location=no, menubar=no, scrollbars=no, resizable=no');
	 newWin.focus();
}

function checksizeanim() 
{ 
	if (document.images[0].complete) 
	{ 
		window.resizeTo(document.images[0].width+376,document.images[0].height+436); window.focus();
	} 
	
}
// -->