
	// -----------------------------------------------------------------------
	// GET URL
	function getURL(URL){ 
		open(URL);
	} 

	// -----------------------------------------------------------------------
	// CREATION DES VARIABLES
	var windowHeight = 0;
	var windowWidth = 0;

	// -----------------------------------------------------------------------
	// DEFINITION DES VARIABLES
	function getWindowSize() {
		if (typeof(window.innerHeight) == 'number') {
			windowHeight = window.innerHeight;
			windowWidth = window.innerWidth;
		} else {
			if (document.documentElement && document.documentElement.clientHeight) {
				windowHeight = document.documentElement.clientHeight;
				windowWidth= document.documentElement.clientWidth;
			} else {
				if (document.body && document.body.clientHeight) {
					windowHeight = document.body.clientHeight;
					windowWidth = document.body.clientWidth;
				}
			}
		}
	}

	// -----------------------------------------------------------------------
	// MISE EN PLACE DU CADRE
	function setFlash() {
		if (document.getElementById) {
			getWindowSize();
			var contentHeight = document.getElementById('flash').offsetHeight;
			var contentWidth = document.getElementById('flash').offsetWidth;
			var flashElement = document.getElementById('flash');
			flashElement.style.width = contentWidth + 'px';
			flashElement.style.height = contentHeight + 'px';
		}
	}
