// Copyright ALEXANDRE ABELA, 2001
// Auteur           : SLIMANI Karim
// Date de creation : 29/02/2001
// Description      : Fonction de zoom (ouvre une nouvelle fenetre

function Zoom(Dst, DstWidth, DstHeight)
{
 ZoomWindow = window.open( Dst, 'zoom', 'width=' + DstWidth + ',height=' + DstHeight + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' );
 ZoomWindow.focus();
}
