function detectarTeclaEnter(event) {
	var retorno=0;
	tecla = (document.all) ? event.keyCode : event.which;
	if (tecla==13) retorno=1;
	return retorno
}

function convierteMayusculas(texto){
	retorno=texto.toUpperCase();
	return retorno;
}
