// JavaScript Document
		function pulsar(e,formulario) {
		  tecla = (document.all) ? e.keyCode :e.which;
		  if(tecla==13) formulario.submit();
		} 