function jsRememberW() {
	var confirmText = "By ticking this box you will no longer need to log in\n" +
		"to SaleHoo from this computer.\n\n" +
		"You can turn this feature off by logging out any time\n\n" +
		"Please don't use this option unless you are the only person\n"+
		"who has access to this computer."
					
	if (document.getElementById("autologin").checked)
		if (!confirm(confirmText))
			document.getElementById("autologin").checked = false;
}