// ********************************************************************** 
// * Galerie de l'Estelle Version #1.0.0 - 28.08.2004	
// * Copyright Exploitation GALERIE DE L'ESTELLE
// * Copyright Commercialisation SIGNO sarl (c) 2004 - info@signo.fr
// * Copyright Conception Graphique VOYAGEUR sarl (c) 2004 -
// * Copyright Développement Technique CYCLOP France sarl (c) 2004
// * Script Développé par Luc TALARICO - luc.talarico@cyclop-france.com				
// ********************************************************************** 

var popUpWin=0;
function popUpWindow(URLStr, width, height) {
	var left  = (screen.width/2) - width/2;
	var top   = (screen.height/2) - height/2;
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	if(popUpWin) {
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, 'ZOOM', styleStr);
};
