function ods_ajaxmailsubscription(obj){
    if(typeof agree_shiff == 'undefined') {
        agree_shiff = '';
    }
    if(jQuery('#agree-rule').attr('checked') == true || typeof jQuery('#agree-rule').attr('id') == 'undefined') {
        jQuery('#tx_odsajaxmailsubscription_pi1_indication').css('display','block');
        jQuery.ajax({  
            type: 'POST',  
            url: obj.form.action,  
            data: jQuery.param(jQuery(obj.form).serializeArray())+'&'+obj.name+'=1&tx_odsajaxmailsubscription_pi1[ajax]=jquery',  
            success: function(data) {
                jQuery('#tx_odsajaxmailsubscription_pi1').html(data);
                jQuery('#tx_odsajaxmailsubscription_pi1_indication').css('display','none');
            }
        });
    } else {
        //alert(agree_shiff + '"' +jQuery('#agree-rule').next().text() + '"');
      alert('Sie müssen mit den Datenschutzerklärung einverstanden sein.');
    }
    return false;
}


