<!--
function displayPicture(image, width, height) 
{
    window.open(image, "", "width=" + (width + 100) + ",height=" + (height + 100) + ",scrollbars=0,statusbar=0,left=" + ((screen.width - (width + 100))/2) + ",top=" + ((screen.height - (height + 100))/2)) ;
}
//-->

function displayPicture(image, width, height) 
{
	window.open("photo.php?src=" + image, "", "width=" + width + ",height=" + height + ",scrollbars=0,statusbar=0,left=" + (screen.width - width)/2 + ",top=" + (screen.height - height)/2) ;
}

function fermeFenetre()
{
	window.close();
	return "true" ;
}
