<!-- Ouverture d'une fenêtre
function TourVirtuel(lien) {
	if (navigator.appName != "Microsoft Internet Explorer")
	{
		alert ("The virtual turn works only with Microsoft Internet Explorer! ");
	}
	else
	{
		window.open(lien, '', 'status=yes,scrollbars=no,width=350,height=300');
	}
}

