	if (document.layers) {
	    var large = innerWidth;
	    var longue = innerHeight;
	    window.captureEvents(Event.RESIZE);
	    window.onresize = tienstoibien;
        }
        
    function tienstoibien() {
        if (innerWidth != large || innerHeight != longue) {
            window.location.reload();
	        }
        }       

    function enlarge(i) {
        var url =  'pix/lrg/19990' + i + '.jpg';    
        var args = 'width=500,height=500,location=no,toolbar=no,resizable=yes,scrollbars=yes,status=yes';                        
        var fenetre = window.open(url,'Burning_Man',args);
        fenetre.focus();        
        }

