// JavaScript Document

		function MM_openBrWindow(theURL,winName,features) { //v2.0
		  window.open(theURL,winName,features);
		}
		
		function detectaBrowser() {
		if (navigator.appName.toLowerCase().indexOf('microsoft internet explorer') > -1)
		return('ie');
		else
		if (navigator.appName.toLowerCase().indexOf('netscape') > -1)
		return('firefox');
		}

		function ajuste(){
			browser = detectaBrowser();
			
		if (browser == 'firefox') {
			/*alert(document.getElementById('conteudo_interno').style.Height)*/
		document.getElementById('rodape').style.top = document.getElementById('conteudo_interno').style.height+'px'
		} else {
		if (browser == 'ie') {
		document.getElementById('rodape').style.top = document.getElementById('conteudo_interno').style.height+200
		}}}	
		

		

		

