/* JS Document */
window.onload = function(){
	if (document.getElementById("outer") != undefined){
		winH = getWindowHeight();
		if (winH >= 680){
			document.getElementById("outer").style["height"] = getWindowHeight()+"px";
		}
		else{
			document.getElementById("outer").style["height"] = "680px";
		}
	}
}
function launch(){
	//openBrWindow('/frontoffice/index.php?<?php echo $_SERVER['QUERY_STRING']; ?>', 'gerliwin2', 995, 680, 'scrollbars=no, toolbars=no, fullscreen=yes, kiosk=yes', true);
	Gerli_FL_RunContent();
}
	


function googleFool($URL){
	iFrame = document.getElementById("goopage");
	
	if ($URL.substr(-1) != "/"){
		if ($URL.indexOf(".php")==-1){
			$URL = $URL+"/";
		}		
	}
	
	if ($URL.indexOf('/gerlinea/')==0){ // la syntaxe correcte est /content/gerlinea/rubrique/sous/page
		$URL = '/content'+$URL;			// on corrige si path incomplet
	}
	
	if (iFrame!=null){
		//alert($URL);
		if (iFrame.src!=$URL){ // éviter les doublons, qui faussent les bounce rates
			iFrame.src=$URL;	
		}		
	}
}