//
function foobar(theform)
{
	theform.save.disabled = true;
	return true;
}

//
function track(lotId, accountId, accountEmail, track)
{
	$.ajax({
		type: "GET",
		url: "/nl/lot/track/id/" + lotId + "/account/" + accountId + "/email/" + accountEmail + "/track/" + track,
		dataType: "json",
		success: function(msg){
			//alert("Status: " + msg.status);
		},
		error: function(){
	        alert("Ajax request failed!");
	    }
	});
}