function GetDownload() {
    var LabelA = new Array("","sc0","vn0","nn0","em0");
    for (var c=1;c<LabelA.length;c++) {
	$(LabelA[c]).innerHTML = "";
    }

    var MyPostBody = "";
    var Msg = new Array();
    Msg[0] = 'The email adress '+$("em").value+' already exists! The login data was send to email adress '+$("em").value+'!';
    Msg[1] = 'The login data was send to email adress '+$("em").value+'! Please check your email account!';
    Msg[2] = 'The login data could not be send! Please try again or check that your email adress is correct!';
    Msg[3] = 'The login data could not be send to an existing email adress! Please try again or check that your email adress is still valid or active!';

    Msg[4] = 'The captcha numbers for spam protection are incorrect! Please try again!';
    Msg[5] = 'Your first name is missing!';
    Msg[6] = 'Your last name is missung!';
    Msg[7] = 'Your email adress seems to be incorrect! Please check it!';

    MyPostBody = "vn="+$("vn").value+"&nn="+$("nn").value+"&em="+$("em").value+"&ct="+$("ct").value+"&ws="+$("ws").value+"&cs="+$("cs").value+"&sc="+$("sc").value+"&lv="+$("version").value;
    var opt = {
        method: "post",
        postBody: MyPostBody,
        onSuccess: function(t) {
            alert('RT: '+ t.responseText + '  ' + Msg[t.responseText]);

            if (t.responseText > 3) {
                $('sc').value = '';
                $(LabelA[t.responseText - 3]).innerHTML = "<<<";
                $('dimg').src = 'NewUser/Dimage.php?SID='+Math.floor(Math.random()*1001);
            }
        },
        on404: function(t) {
            alert("Error 404: location download-resp.php was not found.");
        },
        onFailure: function(t) {
            alert("Error " + t.status + " -- " + t.statusText);
        }
    }
    new Ajax.Request("NewUser/download-resp.php", opt);
}
