function Enviar(formulario){ //Funcion para hacer submits de formularios
	document[formulario].submit();
}


//Funciones para el suggest

function LimpiaTxt(txt){
	 document.getElementById(txt).value="";
}


//funcion que permite solo aceptar numeros a un textbox, y backspace
function onlyNumbers(e, type){ 
	var charCode = (e.which) ? e.which : event.keyCode
	if (type=='integer'){
		if ((charCode < 48 || charCode > 57) && charCode != 8){
			return false;
		}
	}else{
		if ((charCode < 48 || charCode > 57) && charCode != 46 && charCode != 8 ){
			return false;
		}
	}
	return true;
}