﻿// Warn customer about auto-login feature
function rememberMe( checkboxName ) {
	var warningMsg = "If you tick this box you will no longer need to log in when\n" +
		              "visiting FitnessMentor from this computer.\n\n" +
		              "Logging out disables this feature.\n\n" +
          	   	  "WARNING:\n" +
		              "Do not use this option unless you are the only person with access\n" +
		              "to this computer - to prevent others from accessing your account.\n\n"

	if (document.getElementById(checkboxName).checked)
		if (!confirm(warningMsg))
			document.getElementById(checkboxName).checked = false;
}