<!--

function switchImageOn(imgIndex)
{
	if (document.images) {
		document.images[document.imageMenuOn[imgIndex].name].src = document.imageMenuOn[imgIndex].src;
	}
}


function switchImageOff(imgIndex)
{
	if (document.images) {
		document.images[document.imageMenuOn[imgIndex].name].src = document.imageMenuOff[imgIndex].src;
	}
}


// Ouvre la fenetre de visualisation des photo/videos
function openWindow(url, pid, media)
{
	var fenetre = url + "?pid=" + pid + "&media=" + media;
	
	window.open(fenetre, 'moviePlayer', 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=660,height=730,directories=no,location=no');
}
-->
