/* GA Opt out
* Disable tracking if the opt-out cookie exists.
*/
jQuery(document).ready(function(){
jQuery('#GAOptOut').click(function() {
gaOptout();
GAOptOutFeedback ();
})
if (document.cookie.indexOf(disableStr + '=true') > -1) {
GAOptOutFeedback ();
}
function GAOptOutFeedback () {
jQuery('#GAOptOutBr').before(navigator.appName+'-');
jQuery('#GAOptOutDom').after(': '+window.location.origin+'');
jQuery('#GAOptOutFeedback').remove();
jQuery('#GAOptOut').after(' (Stand: Opt-Out-Cookie ist gesetzt)');
};
});