function check(checkbox, tdId) {
	var tdElement = document.getElementById(tdId);
	if (checkbox.checked) {
		tdElement.className="text-download-active";	
	}
	else {
		tdElement.className="text-download-inactive";
	}	
}

function downloadGuimbo(checkboxId) {
	var cbElement = document.getElementById(checkboxId);
	if (cbElement.checked) {
		downloadFile("guimbo-core-1.1-RC3.jar");
	}
}

function downloadSources(checkboxId) {
	var cbElement = document.getElementById(checkboxId);
	if (cbElement.checked) {
		downloadFile("guimbo-core-1.1-RC3-sources.jar");
	}
}

function downloadFile(filename) {
	document.location="/download?filename=" + filename;
}