var lspp = {
    sendFeedback: function() {
        var div = $('feedback');
        var URL = "/cgi-bin/lsppfeedback.cgi";
        var email = document.forms.feedbackform.email.value;
        var comment = document.forms.feedbackform.comment.value;
        var postbody = "email="+email+"&comment="+comment;
        new Ajax.Request(URL, { method: "post", postBody: postbody, onComplete: function(response) { div.innerHTML = response.responseText; } });
        }
}

function downloadLsprepost() {
    var w = document.getElementById('lspp_download_window');
    var wb = document.getElementById('lspp_download_button');
    if (w.style.display == "none") {
        w.style.display = "block";
        wb.innerHTML = "";
        }
    else {
        w.style.display = "none";
        wb.innerHTML = "download";
        }
}
