	var windowToAdjust = ( window.external && window.external.menuArguments ) ? window.external.menuArguments.top : window;
	function focusNorm() { if( window.document.forms[0]['N'+windowToAdjust.screen.width+''] ) { window.document.forms[0]['N'+windowToAdjust.screen.width+''].focus(); } }
	function setZoom(oSelect) {
		if( oSelect.selectedIndex ) {
			if( windowToAdjust.document.body ) {
				if( windowToAdjust.document.body.style ) {
					if( parseInt( oSelect.options[oSelect.selectedIndex].value ) > 100 ) {
						if( !window.confirm( 'All \'drop-down\' select inputs on the page you are adjusting will no longer operate correctly. Resize anyway?' ) ) { oSelect.options[0].selected = true; return; }
					}
					windowToAdjust.document.body.style.zoom = oSelect.options[oSelect.selectedIndex].value + '%';
					if( window.external && window.external.menuArguments ) { window.close(); }
				}
			}
		}
	}

	var initiale=100;
	function Loupe(plusoumoins) {
		var add=10;
		if (plusoumoins==1) {
			initiale=initiale + add;
		}
		if (plusoumoins==0) {
			initiale=initiale - add;
		}
			window.setZoom;
			if( windowToAdjust.document.body ) {
				if( windowToAdjust.document.body.style ) {
					windowToAdjust.document.body.style.zoom = initiale + '%';
					if( window.external && window.external.menuArguments ) { window.close(); }
				}
			}
	}
