// javascript
function checkLaunch()
{
	if (location.search!="") launchFra()
}

function launchFra(params)
{
	if (typeof(params)=="undefined")
	{
		params = location.search
	}
	
	urlPagina   = "francais/ambiente.html" + params;
	win_width   = (screen.width*99)/100
	win_height  = (screen.height*94)/100
	//win_height  = 650
	if (screen.width<1024) {
		contenitore = window.open(urlPagina,"contenitore","scrollbars=yes, width="+win_width+", height=" + win_height + ",top=0,left=0,resizable=yes, status=no")
        } else {
                contenitore = window.open(urlPagina,"contenitore","width="+win_width+", height=" + win_height + ",top=0,left=0,resizable=yes, status=no")
        }
	
	ifExistWin = function()
	{
		if (typeof(contenitore)!="undefined" && typeof(contenitore)=="window")
		{
			contenitore.resizeTo(win_width,win_height-30)
			contenitore.moveTo(0,0);
			contenitore.focus();
		}
		else
		{
			//alert("Non e' stato possibile aprire la finestra")
		}
	}
	window.setTimeout(ifExistWin,1000)
	
}