﻿
function DisplayTeaser(_objRoot) {
    var _spnTeaser = _objRoot.childNodes[1];
    if(_spnTeaser != null && (_spnTeaser.innerText != '' || _spnTeaser.innerText != null))
        _spnTeaser.style.display = "block";
}

function HideTeaser(_objRoot) {
    var _spnTeaser = _objRoot.childNodes[1];
    if(_spnTeaser != null)
        _spnTeaser.style.display = "none";
}

function CheckAGB(_strChk) {
    var _chk = document.getElementById(_strChk);

    if(_chk.checked == false) {
        alert('Das Lesen der AGBs wurde nicht bestätigt');
        return false;
    }
    else
        return true;
}

function CheckGewerb(_strChk) {
    var _chk = document.getElementById(_strChk);

    if(_chk.checked == false) {
        alert('Sie haben sich nicht als gewerblicher Kunde bestätigt');
        return false;
    }
    else
        return true;
}
