function initialize()
{
	document.license_e.agreement.checked = false;
	document.license_j.agreement.checked = false;
}

function set_agreement_e() {

	if (document.license_e.agreement.checked == false) {
		window.alert("License acceptance is required. \nPlease indicate that you accept the above software license agreement(s), by checking 'Accept'.");
		return false;
	} else {
		document.cookie = "license=accept;"+"path=/myPresto/;";
		return true;
	}
	return false; 
}

function set_agreement_j() {

	if (document.license_j.agreement.checked == false) {
		window.alert("License acceptance is required. \nPlease indicate that you accept the above software license agreement(s) by checking 'Accept'.");
		return false;
	} else {
		document.cookie = "license=accept;" + "path=/myPresto/;";
		return true;
	}
	return false; 
}
