<!--
var browserVer = parseInt(navigator.appVersion);
   		if (navigator.appName == "Netscape" && browserVer >= 4)
   		{
   		var client = "NET";
   		}
   		else if (navigator.appName == "Microsoft Internet Explorer" && browserVer >= 4)
   		{
   		var client = "IE";
   		}
function GetArrow()
{
	if ((client == "NET") || (client == "IE"))
	{
	Arrow = new Image(17,15);
		Arrow.src = "images/puces/fleche_on.gif";
	}
}

function Roll(x)
{
	if((client == "NET") || (client == "IE"))
	{
	x.src = "images/puces/fleche_on.gif";
	}
}

function UnRoll(y)
{
	if((client == "NET") || (client == "IE"))
	{
	y.src = "images/puces/fleche_off.gif";
	}
}

function ZoomPlan()
{
plan.focus();
}

function ShowPlan()
{
plan = window.open('', 'plan', 'location=no,scrollbars=no,toolbar=no,resizable=no,width=456,height=540,top=0,left=75');
ZoomPlan();
}

function focaliser()
{
fille.focus();
}

function ShowPhotos()
{
fille = open('', 'fille', 'location=no,scrollbars=yes,resizable=no,width=350,height=410,top=10,left=50');
focaliser();
}

function focaliserQuick()
{
filleQuick.focus();
}

function ShowQuick()
{
filleQuick = open('', 'filleQuick', 'location=no,scrollbars=yes,resizable=no,width=340,height=320,top=50,left=100');
focaliserQuick();
}

function focaliserReal()
{
filleReal.focus();
}

function ShowReal()
{
filleReal = open('', 'filleReal', 'location=no,scrollbars=yes,resizable=no,width=340,height=320,top=50,left=100');
focaliserReal();
}
// -->
