// JavaScript Document


function resizeMe(){
	docHeight = conteudo.document.body.scrollHeight
	document.getElementById('conteudo').style.height = docHeight + 0 + 'px'
}

function Somente_Numeros(e){
	if (document.all) // Internet Explorer
		var tecla = event.keyCode;
	else if(document.layers) // Nestcape
		var tecla = e.which;
		if (tecla > 47 && tecla < 58) // numeros de 0 a 9
			return true;
		else
			{
				if (tecla != 8) // backspace
					event.keyCode = 0;
					//return false;
				else
					return true;
			}
}
function abre_site(width, height, nome) {
   		var top; var left;
  		top = ( (screen.height/2) - (height/2) )
  		left = ( (screen.width/2) - (width/2) )
		window.open(nome, "","toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrollbars=1,width="+width+			 					",height="+height+",left="+left+",top="+top);
	}


