<!--
function Ouvrir_PopUpArt(idart){
	xWin = 600;
	yWin = 450;

	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 - xWin)/2, yOffset = (yMax - yWin)/2;
	window.open('/visart.php?id_art=' + idart,'art_' + idart,'width=' + xWin + ',height=' + yWin + ',screenX=' + xOffset + ',screenY=' + yOffset + ',top=' + yOffset + ',left=' + xOffset + ',scrollbars=yes, toolbar=no, menubar=no, status=no, directories=no, resizable=yes, location=no');
}

function Ouvrir_PopUpLien(fic){
	xWin = 600;
	yWin = 450;

	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 - xWin)/2, yOffset = (yMax - yWin)/2;
	window.open('/vis' + fic + '.php',fic,'width=' + xWin + ',height=' + yWin + ',screenX=' + xOffset + ',screenY=' + yOffset + ',top=' + yOffset + ',left=' + xOffset + ',scrollbars=yes, toolbar=no, menubar=no, status=no, directories=no, resizable=yes, location=no');
}

//-->