/////FUNÇÃO PARA VALIDAR NÚMERO//////////////////////////////////////////////////////////////

	function ValidaNumeros(virguLa, oQue, e){
	 var key = '';
	 var strCheck = '0123456789,';
	 var whichCode = (window.Event) ? e.which : e.keyCode;
	 if (virguLa=="nao") strCheck = '0123456789';
	 if (whichCode == 13) return true;
	 key = String.fromCharCode(whichCode);
	 if (strCheck.indexOf(key) == -1) return false;
//	 if (oQue.value.length > 7) return false;
//	 var str = oQue.value.replace(",", ".");
//	 oQue.value=str;
//	 if(isNaN(oQue.value)){
//	  alert("O Valor informado não é válido.");
//	  oQue.value="";
//	  oQue.focus();
//	  return(false);
//	 }
	 return true;
	}