﻿// JScript File

function CheckThisOut()
{
    alert ("Check this out");
}

function ConfirmKeepAlive(objId)
{
    var obj = document.getElementById(objId);
	var confirmText = "If you tick this box then you will no longer need to log in every time you come to this site from this computer.\n\n" +
	"You can disable this feature at any time by logging out.\n\n" +
	"Only use this option if you are the only person who has access to this computer as you will be liable for\n" +
	"the actions of anyone who uses your login for access."
					
	if (obj.checked)
		if (!confirm(confirmText))
			obj.checked = false;
}
