function remBrowser() {
	var confirmText = "If you tick this box then you will no longer need to log in\n" +
		"when visting SNM Chat from this computer.\n\n" +
		"You can disable this feature at any time by logging out.\n\n" +
		"Don't use this option unless you are the only person\nwho has access to this computer.\n\n" +
		"WARNING:\n" +
		"If you do decide to use this option you will be liable for the \nactions of anyone who uses your login to access SNM."
					
	if (document.getElementById("rememberme").checked)
		if (!confirm(confirmText))
			document.getElementById("rememberme").checked = false;
}