$('input.keypressConnectionSubmit').keypress(function (e) {
			if(e.which == 13)
			{
				f_connection.submit();
			}
		}
	);

