function showSupportConceptList() { var hidingModalWrapper = $("#hidingModalWrapper"); var supportConceptListContainer = $("#supportConceptListContainer"); try { hidingModalWrapper.show(); hidingModalWrapper.css("height", $(document).height()); supportConceptListContainer.show(); } catch(exception) { hidingModalWrapper.hide(); supportConceptListContainer.hide(); console.log("Fehler: " + exception.message); } } function selectSupportConcept(cb2scOid) { showSanduhr(); $("#supportConceptForm_" + cb2scOid).submit(); } function hideModalWrapper() { $("#hidingModalWrapper").hide(); $("#supportConceptListContainer").hide(); }