<!-- Copyright 2000 Yvan VANWYNSBERGHE annonceur@devparadise.com - yvanwynsberghe@devparadise.com -->
<!-- d'autres sources sont disponible à http://www.devparadise.com/ -->
<!-- Utilisation libre si vous laissez le copyright, la distribution de ce sources n'est possible qu'avec l'accord de l'auteur -->
<!--

function Enlarge_Photo(Identifiant) {
	if (document.all)
		var xMax = screen.width, yMax = screen.height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 640, yMax=480;
		var xOffset = (xMax - 350)/2, yOffset = (yMax - 350)/2;
	window.open('photo.asp?PR_ID=' + Identifiant,'enlarged_photo','width=350,height=350,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=yes, resizable=yes');
}
function Enlarge_Photo_VE(Identifiant) {
	if (document.all)
		var xMax = screen.width, yMax = screen.height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 640, yMax=480;
		var xOffset = (xMax - 350)/2, yOffset = (yMax - 350)/2;
	window.open('photo_VE.asp?FTVE_ID=' + Identifiant,'enlarged_photo','width=350,height=350,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=yes, resizable=yes');
}
//-->