function validate_then_submit(obj){
if (document.getElementById('agreetotos').checked == false) 
return alert('You must agree to the terms of service or you cannot download from this site.');
document.getElementById('get').value = obj.id;
document.forms[0].submit();
}