function fenetre(src, titre, width, height)
{
	if(!titre || titre=='')
		titre = "Photo NosLapins.com";
	if(!width)
		width = '';
	if(!height)
		height = '';
	var h=screen.availHeight/2-50;
	var l=screen.availWidth/2-50;
	window.open('image.php?title='+titre+'&src='+src+'&width='+width+'&height='+height, 'Bouh', 'width=50,height=50,top='+h+',left='+l+',resizable=yes');
}

function openZoom(img, n)
{
    document.getElementById("img_zoom").src = img;
    document.getElementById("diagZoom").innerHTML = "";
    if (document.getElementById("diag_" + n)) {
        document.getElementById("diagZoom").innerHTML = document.getElementById("diag_" + n).innerHTML;
    }
    document.getElementById("zoom").style.display = "inline";
}

function closeZoom()
{
    document.getElementById("img_zoom").src = "";
    document.getElementById("diagZoom").innerHTML = "";
    document.getElementById("zoom").style.display = "none";
}