/* Adicionar aos favoritos */
function Favoritos(url){
	if (document.all){
		window.external.AddFavorite(url,window.document.title);
	}else{
		alert("Pressione 'CTRL + D'	para adicionar ao favoritos");
	}
}

/*abrir janela*/
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


function AbreOuFecha(div) {
	var ldiv = document.getElementById(div);
	if(ldiv.className == 'DivAberto'){
		ldiv.className = 'DivFechado';
	}else{
		ldiv.className = 'DivAberto';
	}
}


//funtion validar campo numero
function Tecla(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;
}
}


