\n');
}
function zoomPoint(iX, iY, iScale, iLargeur){
iX = Math.round(iX);
iY = Math.round(iY);
var monswf = window.document.carteInteractive;
// affectation des variables
monswf.SetVariable("/zoomJS:iXJ", iX);
monswf.SetVariable("/zoomJS:iYJ", iY);
monswf.SetVariable("/zoomJS:iScaleJ", iScale);
monswf.SetVariable("/zoomJS:iLargeur", iLargeur);
// déplacement de la tête de lecture
monswf.TGotoFrame("/zoomJS",2);
}