function remBrowser() {
	var confirmText = "If you tick this box then you will no longer need to log in\n" +
		"when visiting Life's a Boar from this computer.\n\n" +
		"You can disable this feature at any time by logging out.\n\n" +

		"WARNING:\n" +
		"Don't use this option unless you are the only person\nwho has access to this computer."
					
	if (document.getElementById("RememberMe").checked)
		if (!confirm(confirmText))
			document.getElementById("RememberMe").checked = false;
}
  