
	// -----------------------------------------------------------------------
	// OUVERTURE DE POP UP
		function openWindow(lg) { 
			popupWin = window.open('flash.php?lg='+lg, 'flash', 'width='+ (window.screen.width-10) +', height='+ ((window.screen.width/8*6)-70) +', resizable=no, scrollbars=yes, menubar=no, left=0, top=0'); 
		}

	// -----------------------------------------------------------------------
	// OUVERTURE DE POP UP PLEIN ECRAN
		function openfull(url) {  
			pleinecran = window.open(url,'pleinecran','width='+screen.width+',height='+screen.height+',scrollbar=no,status=no,directories=no,resizable=no');
			pleinecran.moveTo(0,0);
			if (document.all) {
				if ( navigator.userAgent.toLowerCase().indexOf('mac') != -1) { 
					pleinecran.resizeTo( screen.availWidth, screen.availHeight);
				}
			} else if (isNS || isNS6) {
				pleinecran.outerHeight = screen.availHeight;
				pleinecran.width = screen.availWidth;
			}
			pleinecran.focus();
		}

	// -----------------------------------------------------------------------
	// MISE EN PLEIN ECRAN
		top.window.moveTo(0,0); 
		if (document.all) { 
			top.window.resizeTo(screen.availWidth,screen.availHeight); 
		}else if (document.layers || document.getElementById) { 
			if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth) {
				top.window.outerHeight = top.screen.availHeight; 
				top.window.outerWidth = top.screen.availWidth; 
			} 
		} 

	// -----------------------------------------------------------------------
	// FERMETURE DE POP UP
		function closeWin(){
			window.close();
		}