function checkTOS()
{
	if(document.getElementById('TOS').checked) {
		return true;
	}
	alert('You must agree to TOS to continue');
	return false;
}

function confirmUser(strQuestion)
{
	var blnDec = confirm(strQuestion);
	if(blnDec) {
		return true;
	}
	return false;
}
