function init(page) {
	document.getElementById('agreement') ? document.getElementById('agreement').checked = false	: null;
	document.getElementById('download')	? document.getElementById('download').disabled = true	: null;
}

function checkAgreement() {
	(document.getElementById('agreement') && document.getElementById('agreement').checked) ? document.getElementById('download').disabled = false : document.getElementById('download').disabled = true;
}

function startDownload(download) {
  if(download == 'platform')
    document.location.href = "../files/AMI4SME_Platform_Distribution.zip";
  if(download == 'manual')
    document.location.href = "../files/Handbk_AMI4SME_Pltfrm_Distrib_V0.37.zip";
  if(download == 'example')
    document.location.href = "../files/example-application.rar";
  
}