function subgoogle()
{				
	formulario = document.getElementById("formg");				
	caminho = "q="+encodeURI(formulario.w.value) + " site:http://fme.itajai.sc.gov.br"
	formulario.w.value = "";				
	caminho = "http://www.google.com/search?hl=en&"+caminho;
	janelaa = window.open(caminho, "janelaa", "");
	janelaa.focus();
}

function tamanhoTela()
{
	if( typeof( window.innerWidth ) == 'number' )
	{
	    winW = window.innerWidth;
	    winH = window.innerHeight;
	}
	else if( document.documentElement &&
	      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
	{
	 /* IE 6+ in 'standards compliant mode' */
	    winW = document.documentElement.clientWidth;
	    winH = document.documentElement.clientHeight;
	}
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
	{
	 /*IE 4 compatible*/
	    winW = document.body.clientWidth;
	    winH = document.body.clientHeight;
	}
	
	if (winW < 955 )
	{
		document.getElementById('padraoPMI').style['visibility']='hidden';
		document.getElementById('padraoPMI').style.display='none';
		document.getElementById('padraoPMI').style['width']='0px';
		document.getElementById('padraoPMI').style['height']='0px';		
		document.getElementById('tbPrincipalP').style['width']='0';	
		document.getElementById('tbPrincipalP').style['height']='0';
		document.getElementById('r1c1').style['height']='160';
		document.getElementById('r1c2').style['height']='160';
		document.getElementById('tbPrincipal').style['width']='756';		
	}
}