Agriculture and Land Use National Greenhouse Gas Inventory Software logo.
Old tractor and tilling system.
Grazing cattle near body of water.
Crops on a hillside.
Thick vegetated hillside.
Image of holly.
Image of corn.

ALU Admin Mail

Request a User Name and Password:

If you would like to download the ALU software, please go to the registration page:
Registration Page.


Login to Download Software:

Please login to access the software download page:

 

All
American
Central America
CfRN
Other
SE Asia
Southern and Eastern Africa
West/Central Africa

$(“#alu_download”).hide();
$(“#alu_login”).show();
function validate(formData, jqForm, options) {
// fieldValue is a Form Plugin method that can be invoked to find the
// current value of a field
// To validate, we can capture the values of both the username and password
// fields and return true only if both evaluate to true
var usernameValue = $(‘input[name=username]’).fieldValue();
var passwordValue = $(‘input[name=password]’).fieldValue();
// usernameValue and passwordValue are arrays but we can do simple
// “not” tests to see if the arrays are empty
if (!usernameValue[0] || !passwordValue[0]) {
alert(‘Please enter a values for required fields’);
return false;
}
}
jQuery(document).ready(function($){
$(‘#ALUlogin’).ajaxForm({
beforeSubmit: validate,
success: function(response){
if (response == 1) {
$(“#alu_login”).hide();
$(“#alu_download”).show();
response= “”;
} else {
$(“#alu_download”).hide();
$(“#alu_login”).show();
}
$(‘#alu_feedback’).text(response);
},
error: function(response){
$(‘#alu_feedback’).text(response);
},
resetForm: true
});
});