var switchSendebeitraege = function(f)
{
	var query = "";
    var xmlhttp = new ajaxRequest(
        "module/sendemodul/getsendeinfos.php",
        function()
        {
            var r = xmlhttp.req;
            if (r.readyState==4)
            {
				document.getElementById('sendeInfoShort').style.display = 'none';

				document.getElementById('sendeInfoDetail').innerHTML = r.responseText;
				document.getElementById('sendeInfoDetail').style.display = 'block';
            }
        },
        "GET",
        query,
        ["Content-Type","application/x-www-form-urlencoded"]
    );
    xmlhttp.doRequest();
}