{"id":198,"date":"2023-07-18T08:33:31","date_gmt":"2023-07-18T15:33:31","guid":{"rendered":"https:\/\/www.eou.edu\/information-technology\/?page_id=198"},"modified":"2023-07-18T08:33:31","modified_gmt":"2023-07-18T15:33:31","slug":"audio-visual-event-request","status":"publish","type":"page","link":"https:\/\/www.eou.edu\/information-technology\/audio-visual-event-request\/","title":{"rendered":"Audio \/ Visual Event Request"},"content":{"rendered":"<style>.wForm form{text-align: left;}<\/style><!-- FORM: HEAD SECTION -->\n    <meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n    <meta name=\"referrer\" content=\"no-referrer-when-downgrade\">\n    <!-- THIS SCRIPT NEEDS TO BE LOADED FIRST BEFORE wforms.js -->\n    <script type=\"text\/javascript\" data-for=\"FA__DOMContentLoadedEventDispatch\" src=\"https:\/\/eou.tfaforms.net\/js\/FA__DOMContentLoadedEventDispatcher.js\" defer><\/script>\n                    <style>\n                    .captcha {\n                        padding-bottom: 1em !important;\n                    }\n                    .wForm .captcha .oneField {\n                        margin: 0;\n                        padding: 0;\n                    }\n                <\/style>\n                <script type=\"text\/javascript\">\n                    \/\/ initialize our variables\n                    var captchaReady = 0;\n                    var wFORMSReady = 0;\n                    var isConditionalSubmitEnabled = false;\n\n                    \/\/ when wForms is loaded call this\n                    var wformsReadyCallback = function () {\n                        \/\/ using this var to denote if wForms is loaded\n                        wFORMSReady = 1;\n                        isConditionalSubmitEnabled = document.getElementById('submit_button').hasAttribute('data-condition');\n                        \/\/ call our recaptcha function which is dependent on both\n                        \/\/ wForms and an async call to google\n                        \/\/ note the meat of this function wont fire until both\n                        \/\/ wFORMSReady = 1 and captchaReady = 1\n                        onloadCallback();\n                    }\n                    var gCaptchaReadyCallback = function() {\n                        \/\/ using this var to denote if captcha is loaded\n                        captchaReady = 1;\n                        isConditionalSubmitEnabled = document.getElementById('submit_button').hasAttribute('data-condition');\n                        \/\/ call our recaptcha function which is dependent on both\n                        \/\/ wForms and an async call to google\n                        \/\/ note the meat of this function wont fire until both\n                        \/\/ wFORMSReady = 1 and captchaReady = 1\n                        onloadCallback();\n                    };\n\n                    \/\/ add event listener to fire when wForms is fully loaded\n                    document.addEventListener(\"wFORMSLoaded\", wformsReadyCallback);\n\n                    var enableSubmitButton = function() {\n                        var submitButton = document.getElementById('submit_button');\n                        var explanation = document.getElementById('disabled-explanation');\n                        var isConditionalSubmitConditionMet = wFORMS.behaviors.condition.isConditionalSubmitConditionMet;\n                        if (\n                            submitButton != null &&\n                            (isConditionalSubmitEnabled && isConditionalSubmitConditionMet) ||\n                            !isConditionalSubmitEnabled\n                        )\n                        {\n                            submitButton.removeAttribute('disabled');\n                            if (explanation != null) {\n                                explanation.style.display = 'none';\n                            }\n                        }\n                    };\n                    var disableSubmitButton = function() {\n                        var submitButton = document.getElementById('submit_button');\n                        var explanation = document.getElementById('disabled-explanation');\n                        if (submitButton != null) {\n                            submitButton.disabled = true;\n                            if (explanation != null) {\n                                explanation.style.display = 'block';\n                            }\n                        }\n                    };\n\n                    \/\/ call this on both captcha async complete and wforms fully\n                    \/\/ initialized since we can't be sure which will complete first\n                    \/\/ and we need both done for this to function just check that they are\n                    \/\/ done to fire the functionality\n                    var onloadCallback = function () {\n                        \/\/ if our captcha is ready (async call completed)\n                        \/\/ and wFORMS is completely loaded then we are ready to add\n                        \/\/ the captcha to the page\n                        if (captchaReady && wFORMSReady) {\n                            \/\/ Prevent both concurrent and sequential executions\n                            if (window.isCreatingCaptcha || window.hasCaptchaRendered) {\n                                return;\n                            }\n                            window.isCreatingCaptcha = true;\n\n                            try {\n                                var submitButton = document.getElementById('submit_button');\n                                var formContainer = submitButton.closest('form') || submitButton.closest('.wFormContainer');\n                                var faCaptcha = null;\n\n                                if (formContainer) {\n                                    faCaptcha = formContainer.querySelector('#google-captcha');\n                                }\n\n                                \/\/ Also check if captcha was appended to body as fallback (look for FA-specific structure)\n                                if (!faCaptcha) {\n                                    var bodyCaptchas = document.querySelectorAll('body > #google-captcha');\n                                    for (var i = 0; i < bodyCaptchas.length; i++) {\n                                        \/\/ Verify it's a FormAssembly captcha by checking for specific structure\n                                        if (bodyCaptchas[i].querySelector('.captcha .oneField .g-recaptcha')) {\n                                            faCaptcha = bodyCaptchas[i];\n                                            break;\n                                        }\n                                    }\n                                }\n\n                                if (faCaptcha) { \n                                    if (faCaptcha.parentNode) {\n                                        faCaptcha.parentNode.removeChild(faCaptcha);\n                                    } \n                                }\n\n                            \/\/ Now create a new captcha container\n                            var captchaContainer = document.createElement('div');\n                            captchaContainer.id = 'google-captcha';\n                            \n                            var captchaDiv = document.createElement('div');\n                            captchaDiv.className = 'captcha';\n                            \n                            var oneFieldDiv = document.createElement('div');\n                            oneFieldDiv.className = 'oneField';\n                            \n                            var recaptchaElement = document.createElement('div');\n                            recaptchaElement.id = 'g-recaptcha-render-div';\n                            recaptchaElement.className = 'g-recaptcha';\n                            \n                            var errorDiv = document.createElement('div');\n                            errorDiv.className = 'g-captcha-error';\n                            \n                            var helpDiv = document.createElement('div');\n                            helpDiv.className = 'captchaHelp';\n                            helpDiv.innerHTML = 'reCAPTCHA helps prevent automated form spam.<br>';\n                            \n                            var disabledDiv = document.createElement('div');\n                            disabledDiv.id = 'disabled-explanation';\n                            disabledDiv.className = 'captchaHelp';\n                            disabledDiv.style.display = 'block';\n                            disabledDiv.innerHTML = 'The submit button will be disabled until you complete the CAPTCHA.';\n                            \n                            oneFieldDiv.appendChild(recaptchaElement);\n                            oneFieldDiv.appendChild(errorDiv);\n                            oneFieldDiv.appendChild(document.createElement('br'));\n                            captchaDiv.appendChild(oneFieldDiv);\n                            captchaDiv.appendChild(helpDiv);\n                            captchaDiv.appendChild(disabledDiv);\n                            captchaContainer.appendChild(document.createElement('br'));\n                            captchaContainer.appendChild(captchaDiv);\n                            \n                            if (submitButton && submitButton.parentNode) {\n                                submitButton.parentNode.insertBefore(captchaContainer, submitButton);\n                            } else {\n                                \/\/ Fallback: append to body if submit button not found.\n                                document.body.appendChild(captchaContainer);\n                            }\n                        } finally {\n                            window.isCreatingCaptcha = false;\n                        }\n                            \n                            grecaptcha.enterprise.render('g-recaptcha-render-div', {\n                                'sitekey': '6LfMg_EaAAAAAMhDNLMlgqDChzmtYHlx1yU2y7GI',\n                                'theme': 'light',\n                                'size': 'normal',\n                                'callback': 'enableSubmitButton',\n                                'expired-callback': 'disableSubmitButton'\n                            });\n                            window.hasCaptchaRendered = true;\n                            var oldRecaptchaCheck = parseInt('1');\n                            if (oldRecaptchaCheck === -1) {\n                                var standardCaptcha = document.getElementById(\"tfa_captcha_text\");\n                                standardCaptcha = standardCaptcha.parentNode.parentNode.parentNode;\n                                standardCaptcha.parentNode.removeChild(standardCaptcha);\n                            }\n\n                            if (!wFORMS.instances['paging']) {\n                                document.getElementById(\"g-recaptcha-render-div\").parentNode.parentNode.parentNode.style.display = \"block\";\n                                \/\/document.getElementById(\"g-recaptcha-render-div\").parentNode.parentNode.parentNode.removeAttribute(\"hidden\");\n                            }\n                            document.getElementById(\"g-recaptcha-render-div\").getAttributeNode('id').value = 'tfa_captcha_text';\n\n                            var captchaError = '';\n                            if (captchaError == '1') {\n                                var errMsgText = 'The CAPTCHA was not completed successfully.';\n                                var errMsgDiv = document.createElement('div');\n                                errMsgDiv.id = \"tfa_captcha_text-E\";\n                                errMsgDiv.className = \"err errMsg\";\n                                errMsgDiv.innerText = errMsgText;\n                                var loc = document.querySelector('.g-captcha-error');\n                                loc.insertBefore(errMsgDiv, loc.childNodes[0]);\n\n                                \/* See wFORMS.behaviors.paging.applyTo for origin of this code *\/\n                                if (wFORMS.instances['paging']) {\n                                    var b = wFORMS.instances['paging'][0];\n                                    var pp = base2.DOM.Element.querySelector(document, wFORMS.behaviors.paging.CAPTCHA_ERROR);\n                                    if (pp) {\n                                        var lastPage = 1;\n                                        for (var i = 1; i < 100; i++) {\n                                            if (b.behavior.isLastPageIndex(i)) {\n                                                lastPage = i;\n                                                break;\n                                            }\n                                        }\n                                        b.jumpTo(lastPage);\n                                    }\n                                }\n                            }\n                        }\n                    }\n                <\/script>\n                                    <script src='https:\/\/www.google.com\/recaptcha\/enterprise.js?onload=gCaptchaReadyCallback&render=explicit&hl=en_US' async\n                        defer><\/script>\n                <script type=\"text\/javascript\">\n                    document.addEventListener(\"DOMContentLoaded\", function() {\n                        var warning = document.getElementById(\"javascript-warning\");\n                        if (warning != null) {\n                            warning.parentNode.removeChild(warning);\n                        }\n                        var oldRecaptchaCheck = parseInt('1');\n                        if (oldRecaptchaCheck !== -1) {\n                            var explanation = document.getElementById('disabled-explanation');\n                            var submitButton = document.getElementById('submit_button');\n                            if (submitButton != null) {\n                                submitButton.disabled = true;\n                                if (explanation != null) {\n                                    explanation.style.display = 'block';\n                                }\n                            }\n                        }\n                    });\n                <\/script>\n                <script type=\"text\/javascript\">\n        document.addEventListener(\"FA__DOMContentLoaded\", function(){\n            const FORM_TIME_START = Math.floor((new Date).getTime()\/1000);\n            let formElement = document.getElementById(\"tfa_0\");\n            if (null === formElement) {\n                formElement = document.getElementById(\"0\");\n            }\n            let appendJsTimerElement = function(){\n                let formTimeDiff = Math.floor((new Date).getTime()\/1000) - FORM_TIME_START;\n                let cumulatedTimeElement = document.getElementById(\"tfa_dbCumulatedTime\");\n                if (null !== cumulatedTimeElement) {\n                    let cumulatedTime = parseInt(cumulatedTimeElement.value);\n                    if (null !== cumulatedTime && cumulatedTime > 0) {\n                        formTimeDiff += cumulatedTime;\n                    }\n                }\n                let jsTimeInput = document.createElement(\"input\");\n                jsTimeInput.setAttribute(\"type\", \"hidden\");\n                jsTimeInput.setAttribute(\"value\", formTimeDiff.toString());\n                jsTimeInput.setAttribute(\"name\", \"tfa_dbElapsedJsTime\");\n                jsTimeInput.setAttribute(\"id\", \"tfa_dbElapsedJsTime\");\n                jsTimeInput.setAttribute(\"autocomplete\", \"off\");\n                if (null !== formElement) {\n                    formElement.appendChild(jsTimeInput);\n                }\n            };\n            if (null !== formElement) {\n                if(formElement.addEventListener){\n                    formElement.addEventListener('submit', appendJsTimerElement, false);\n                } else if(formElement.attachEvent){\n                    formElement.attachEvent('onsubmit', appendJsTimerElement);\n                }\n            }\n        });\n    <\/script>\n\n    <link href=\"https:\/\/eou.tfaforms.net\/dist\/form-builder\/5.0.0\/wforms-layout.css?v=84c9e9ebc8ad47335cb5121d6c8e6fb90e8a3a52\" rel=\"stylesheet\" type=\"text\/css\" \/>\n\n    <link href=\"https:\/\/eou.tfaforms.net\/uploads\/themes\/theme-57.css\" rel=\"stylesheet\" type=\"text\/css\" \/>\n    <link href=\"https:\/\/eou.tfaforms.net\/dist\/form-builder\/5.0.0\/wforms-jsonly.css?v=84c9e9ebc8ad47335cb5121d6c8e6fb90e8a3a52\" rel=\"alternate stylesheet\" title=\"This stylesheet activated by javascript\" type=\"text\/css\" \/>\n    <script type=\"text\/javascript\" src=\"https:\/\/eou.tfaforms.net\/wForms\/3.11\/js\/wforms.js?v=84c9e9ebc8ad47335cb5121d6c8e6fb90e8a3a52\"><\/script>\n    <script type=\"text\/javascript\">\n        if(wFORMS.behaviors.prefill) wFORMS.behaviors.prefill.skip = true;\n    <\/script>\n    <link rel=\"stylesheet\" type=\"text\/css\" href=\"https:\/\/eou.tfaforms.net\/css\/kalendae.css\" \/>\n\t<script type=\"text\/javascript\" src=\"https:\/\/eou.tfaforms.net\/js\/kalendae\/kalendae.standalone.min.js\" ><\/script>\n\t<script type=\"text\/javascript\" src=\"https:\/\/eou.tfaforms.net\/wForms\/3.11\/js\/wforms_calendar.js\"><\/script>\n    <script type=\"text\/javascript\" src=\"https:\/\/eou.tfaforms.net\/wForms\/3.11\/js\/localization-en_US.js?v=84c9e9ebc8ad47335cb5121d6c8e6fb90e8a3a52\"><\/script>\n\n<!-- FORM: BODY SECTION -->\n<div class=\"wFormContainer\" style=\"max-width: 100%; width: auto;\">\n    <div class=\"wFormHeader\"><\/div>\n    <style type=\"text\/css\">\n                #tfa_9,\n                *[id^=\"tfa_9[\"] {\n                    width: 190px !important;\n                }\n                #tfa_9-D,\n                *[id^=\"tfa_9[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_128,\n                *[id^=\"tfa_128[\"] {\n                    width: 80px !important;\n                }\n                #tfa_128-D,\n                *[id^=\"tfa_128[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_128-L,\n                label[id^=\"tfa_128[\"] {\n                    width: 71px !important;\n                    min-width: 0px;\n                }\n            \n                #tfa_145,\n                *[id^=\"tfa_145[\"] {\n                    width: 80px !important;\n                }\n                #tfa_145-D,\n                *[id^=\"tfa_145[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_145-L,\n                label[id^=\"tfa_145[\"] {\n                    width: 108px !important;\n                    min-width: 0px;\n                }\n            \n                #tfa_72,\n                *[id^=\"tfa_72[\"] {\n                    width: 110px !important;\n                }\n                #tfa_72-D,\n                *[id^=\"tfa_72[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_82,\n                *[id^=\"tfa_82[\"] {\n                    width: 110px !important;\n                }\n                #tfa_82-D,\n                *[id^=\"tfa_82[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_83,\n                *[id^=\"tfa_83[\"] {\n                    width: 110px !important;\n                }\n                #tfa_83-D,\n                *[id^=\"tfa_83[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_97,\n                *[id^=\"tfa_97[\"] {\n                    width: 100px !important;\n                }\n                #tfa_97-D,\n                *[id^=\"tfa_97[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_107-L,\n                label[id^=\"tfa_107[\"] {\n                    width: 240px !important;\n                    min-width: 0px;\n                }\n            \n                #tfa_169-L,\n                label[id^=\"tfa_169[\"] {\n                    width: 240px !important;\n                    min-width: 0px;\n                }\n            \n                #tfa_187,\n                *[id^=\"tfa_187[\"] {\n                    width: 414px !important;\n                }\n                #tfa_187-D,\n                *[id^=\"tfa_187[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_122,\n                *[id^=\"tfa_122[\"] {\n                    width: 414px !important;\n                }\n                #tfa_122-D,\n                *[id^=\"tfa_122[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            \n                #tfa_122-L,\n                label[id^=\"tfa_122[\"] {\n                    width: 240px !important;\n                    min-width: 0px;\n                }\n            \n                #tfa_137-L,\n                label[id^=\"tfa_137[\"] {\n                    width: 481px !important;\n                    min-width: 0px;\n                }\n            \n                #tfa_187,\n                *[id^=\"tfa_187[\"] {\n                    height: 92px !important\n                }\n                #tfa_187-D,\n                *[id^=\"tfa_187[\"][class~=\"field-container-D\"] {\n                    height: auto !important;\n                }\n                #tfa_187-L,\n                label[id^=\"tfa_187[\"],\n                *[id^=\"tfa_187[\"][id$=\"-L\"] {\n                    height: auto !important;\n                }\n            \n                #tfa_122,\n                *[id^=\"tfa_122[\"] {\n                    height: 87px !important\n                }\n                #tfa_122-D,\n                *[id^=\"tfa_122[\"][class~=\"field-container-D\"] {\n                    height: auto !important;\n                }\n                #tfa_122-L,\n                label[id^=\"tfa_122[\"],\n                *[id^=\"tfa_122[\"][id$=\"-L\"] {\n                    height: auto !important;\n                }\n            <\/style><div class=\"\"><div class=\"wForm\" id=\"217754-WRPR\" data-language=\"en_US\" dir=\"ltr\">\n<div class=\"codesection\" id=\"code-217754\"><\/div>\n<form method=\"post\" action=\"https:\/\/eou.tfaforms.net\/api_v2\/rest\/workflow\/processor\" class=\"hintsBelow labelsAbove\" id=\"217754\">\n<div class=\"htmlSection\" id=\"tfa_130\"><div class=\"htmlContent\" id=\"tfa_130-HTML\"><div><b>Please complete this form for your upcoming Audio\/Visual Event.<\/b><\/div><div><b>A minimum of 48 hours before the event start time.<\/b><font face=\"Arial, Arial, Helvetica, sans-serif\"><span><\/span>\n<\/font><\/div><font face=\"Arial, Arial, Helvetica, sans-serif\">\n<span>\nIf there is another person who's contact information will need to be listed for\n<\/span>\n<br>\n<span>\nconfirmation of the event details, you'll be asked to provide it later in this form.\n<\/span>\n<\/font><\/div><\/div>\n<fieldset id=\"tfa_131\" class=\"section inline\">\n<legend id=\"tfa_131-L\"><b><u>Contact Informatio<\/u><\/b><u><b>n<\/b><\/u><\/legend>\n<div id=\"tfa_132\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_147-D\">\n<label id=\"tfa_147-L\" class=\"label preField reqMark\" for=\"tfa_147\">Requestor's First &amp; Last Name<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_147\" name=\"tfa_147\" value=\"\" title=\"Requestor's First &amp; Last Name\" class=\"required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_5-D\">\n<label id=\"tfa_5-L\" class=\"label preField reqMark\" for=\"tfa_5\">Email Address<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_5\" name=\"tfa_5\" value=\"\" title=\"Email Address\" class=\"validate-email required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_6-D\">\n<label id=\"tfa_6-L\" class=\"label preField reqMark\" for=\"tfa_6\">Phone Number<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_6\" name=\"tfa_6\" value=\"\" autoformat=\"###-###-####\" title=\"Phone Number\" class=\"required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_148-D\">\n<label id=\"tfa_148-L\" class=\"label preField reqMark\" for=\"tfa_148\">Event Name<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_148\" name=\"tfa_148\" value=\"\" title=\"Event Name\" class=\"required\"><\/div>\n<\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_7-D\">\n<label id=\"tfa_7-L\" class=\"label preField reqMark\" for=\"tfa_7\">Please Select Your Affiliation<\/label><br><div class=\"inputWrapper\"><select aria-required=\"true\" id=\"tfa_7\" name=\"tfa_7\" title=\"Please Select Your Affiliation\" class=\"required\"><option value=\"\">Please select...<\/option>\n<option value=\"tfa_8\" id=\"tfa_8\" data-conditionals=\"#tfa_128,#tfa_145,#tfa_107\" class=\"\">On-Campus<\/option>\n<option value=\"tfa_80\" id=\"tfa_80\" data-conditionals=\"#tfa_151,#tfa_169\" class=\"\">Off-Campus Non-Profit Entity<\/option>\n<option value=\"tfa_81\" id=\"tfa_81\" data-conditionals=\"#tfa_151,#tfa_169\" class=\"\">Off-Campus For Profit Entity<\/option><\/select><\/div>\n<\/div>\n<div id=\"tfa_133\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_9-D\">\n<label id=\"tfa_9-L\" class=\"label preField \" for=\"tfa_9\">Business Organization Name<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_9\" name=\"tfa_9\" value=\"\" title=\"Business Organization Name\" class=\"\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_151-D\">\n<label id=\"tfa_151-L\" class=\"label preField reqMark\" for=\"tfa_151\">Business Email<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_151\" name=\"tfa_151\" value=\"\" data-condition=\"`#tfa_80` OR `#tfa_81`\" title=\"Business Email\" class=\"required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_128-D\">\n<label id=\"tfa_128-L\" class=\"label preField reqMark\" for=\"tfa_128\">Index Code<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_128\" name=\"tfa_128\" value=\"\" data-condition=\"`#tfa_8`\" title=\"Index Code\" class=\"required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_145-D\">\n<label id=\"tfa_145-L\" class=\"label preField reqMark\" for=\"tfa_145\">Budget Authority<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_145\" name=\"tfa_145\" value=\"\" data-condition=\"`#tfa_8`\" title=\"Budget Authority\" class=\"required\"><\/div>\n<\/div>\n<\/div>\n<div id=\"tfa_134\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_10-D\">\n<label id=\"tfa_10-L\" class=\"label preField \" for=\"tfa_10\">Billing Address<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_10\" name=\"tfa_10\" value=\"\" title=\"Billing Address\" class=\"\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_11-D\">\n<label id=\"tfa_11-L\" class=\"label preField \" for=\"tfa_11\">Billing City<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_11\" name=\"tfa_11\" value=\"\" title=\"Billing City\" class=\"\"><\/div>\n<\/div>\n<\/div>\n<div id=\"tfa_135\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_12-D\">\n<label id=\"tfa_12-L\" class=\"label preField \" for=\"tfa_12\">Billing State<\/label><br><div class=\"inputWrapper\"><select id=\"tfa_12\" name=\"tfa_12\" title=\"Billing State\" class=\"\"><option value=\"\">Please select...<\/option>\n<option value=\"tfa_79\" id=\"tfa_79\" class=\"\">Alabama<\/option>\n<option value=\"tfa_19\" id=\"tfa_19\" class=\"\">Alaska<\/option>\n<option value=\"tfa_25\" id=\"tfa_25\" class=\"\">Arizona<\/option>\n<option value=\"tfa_31\" id=\"tfa_31\" class=\"\">Arkansas<\/option>\n<option value=\"tfa_37\" id=\"tfa_37\" class=\"\">California<\/option>\n<option value=\"tfa_43\" id=\"tfa_43\" class=\"\">Colorado<\/option>\n<option value=\"tfa_49\" id=\"tfa_49\" class=\"\">Connecticut<\/option>\n<option value=\"tfa_55\" id=\"tfa_55\" class=\"\">Delaware<\/option>\n<option value=\"tfa_61\" id=\"tfa_61\" class=\"\">Florida<\/option>\n<option value=\"tfa_67\" id=\"tfa_67\" class=\"\">Georgia<\/option>\n<option value=\"tfa_14\" id=\"tfa_14\" class=\"\">Hawaii<\/option>\n<option value=\"tfa_20\" id=\"tfa_20\" class=\"\">Idaho<\/option>\n<option value=\"tfa_26\" id=\"tfa_26\" class=\"\">Illinois<\/option>\n<option value=\"tfa_32\" id=\"tfa_32\" class=\"\">Indiana<\/option>\n<option value=\"tfa_38\" id=\"tfa_38\" class=\"\">Iowa<\/option>\n<option value=\"tfa_44\" id=\"tfa_44\" class=\"\">Kansas<\/option>\n<option value=\"tfa_50\" id=\"tfa_50\" class=\"\">Kentucky<\/option>\n<option value=\"tfa_56\" id=\"tfa_56\" class=\"\">Louisiana<\/option>\n<option value=\"tfa_62\" id=\"tfa_62\" class=\"\">Maine<\/option>\n<option value=\"tfa_68\" id=\"tfa_68\" class=\"\">Maryland<\/option>\n<option value=\"tfa_15\" id=\"tfa_15\" class=\"\">Massachusetts<\/option>\n<option value=\"tfa_21\" id=\"tfa_21\" class=\"\">Michigan<\/option>\n<option value=\"tfa_27\" id=\"tfa_27\" class=\"\">Minnesota<\/option>\n<option value=\"tfa_33\" id=\"tfa_33\" class=\"\">Mississippi<\/option>\n<option value=\"tfa_39\" id=\"tfa_39\" class=\"\">Missouri<\/option>\n<option value=\"tfa_45\" id=\"tfa_45\" class=\"\">Montana<\/option>\n<option value=\"tfa_51\" id=\"tfa_51\" class=\"\">Nebraska<\/option>\n<option value=\"tfa_57\" id=\"tfa_57\" class=\"\">Nevada<\/option>\n<option value=\"tfa_63\" id=\"tfa_63\" class=\"\">New Hampshire<\/option>\n<option value=\"tfa_69\" id=\"tfa_69\" class=\"\">New Jersey<\/option>\n<option value=\"tfa_16\" id=\"tfa_16\" class=\"\">New Mexico<\/option>\n<option value=\"tfa_22\" id=\"tfa_22\" class=\"\">New York<\/option>\n<option value=\"tfa_28\" id=\"tfa_28\" class=\"\">North Carolina<\/option>\n<option value=\"tfa_34\" id=\"tfa_34\" class=\"\">North Dakota<\/option>\n<option value=\"tfa_40\" id=\"tfa_40\" class=\"\">Ohio<\/option>\n<option value=\"tfa_46\" id=\"tfa_46\" class=\"\">Oklahoma<\/option>\n<option value=\"tfa_52\" id=\"tfa_52\" class=\"\">Oregon<\/option>\n<option value=\"tfa_58\" id=\"tfa_58\" class=\"\">Pennsylvania<\/option>\n<option value=\"tfa_64\" id=\"tfa_64\" class=\"\">Rhode Island<\/option>\n<option value=\"tfa_70\" id=\"tfa_70\" class=\"\">South Carolina<\/option>\n<option value=\"tfa_17\" id=\"tfa_17\" class=\"\">South Dakota<\/option>\n<option value=\"tfa_23\" id=\"tfa_23\" class=\"\">Tennessee<\/option>\n<option value=\"tfa_29\" id=\"tfa_29\" class=\"\">Texas<\/option>\n<option value=\"tfa_35\" id=\"tfa_35\" class=\"\">Utah<\/option>\n<option value=\"tfa_41\" id=\"tfa_41\" class=\"\">Vermont<\/option>\n<option value=\"tfa_47\" id=\"tfa_47\" class=\"\">Virginia<\/option>\n<option value=\"tfa_53\" id=\"tfa_53\" class=\"\">Washington<\/option>\n<option value=\"tfa_59\" id=\"tfa_59\" class=\"\">West Virginia<\/option>\n<option value=\"tfa_65\" id=\"tfa_65\" class=\"\">Wisconsin<\/option>\n<option value=\"tfa_71\" id=\"tfa_71\" class=\"\">Wyoming<\/option><\/select><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_72-D\">\n<label id=\"tfa_72-L\" class=\"label preField \" for=\"tfa_72\">Billing Zip Code<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_72\" name=\"tfa_72\" value=\"\" title=\"Billing Zip Code\" class=\"\"><\/div>\n<\/div>\n<\/div>\n<\/fieldset>\n<fieldset id=\"tfa_75\" class=\"section\">\n<legend id=\"tfa_75-L\"><b><u>Event Information<\/u><\/b><\/legend>\n<div id=\"tfa_125\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_76-D\">\n<label id=\"tfa_76-L\" class=\"label preField reqMark\" for=\"tfa_76\">Event Start Date<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_76\" name=\"tfa_76\" value=\"\" autocomplete=\"off\" title=\"Event Start Date\" class=\"validate-datecal required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_77-D\">\n<label id=\"tfa_77-L\" class=\"label preField reqMark\" for=\"tfa_77\">Event End Date<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_77\" name=\"tfa_77\" value=\"\" autocomplete=\"off\" title=\"Event End Date\" class=\"validate-datecal required\"><\/div>\n<\/div>\n<\/div>\n<div id=\"tfa_126\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_82-D\">\n<label id=\"tfa_82-L\" class=\"label preField reqMark\" for=\"tfa_82\">Event Start Time<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_82\" name=\"tfa_82\" value=\"\" title=\"Event Start Time\" class=\"required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_83-D\">\n<label id=\"tfa_83-L\" class=\"label preField reqMark\" for=\"tfa_83\">Event End Time<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_83\" name=\"tfa_83\" value=\"\" title=\"Event End Time\" class=\"required\"><\/div>\n<\/div>\n<\/div>\n<div class=\"htmlSection\" id=\"tfa_188\"><div class=\"htmlContent\" id=\"tfa_188-HTML\"><b>Please note that any event requested in under 48 hours may be subject to additional fees.<\/b><\/div><\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_84-D\">\n<label id=\"tfa_84-L\" class=\"label preField reqMark\" for=\"tfa_84\">Building<\/label><br><div class=\"inputWrapper\"><select aria-required=\"true\" id=\"tfa_84\" name=\"tfa_84\" title=\"Building\" class=\"required\"><option value=\"\">Please select...<\/option>\n<option value=\"tfa_85\" id=\"tfa_85\" class=\"\">Ackerman<\/option>\n<option value=\"tfa_86\" id=\"tfa_86\" class=\"\">Badgley<\/option>\n<option value=\"tfa_87\" id=\"tfa_87\" class=\"\">Hoke<\/option>\n<option value=\"tfa_89\" id=\"tfa_89\" class=\"\">Inlow<\/option>\n<option value=\"tfa_90\" id=\"tfa_90\" class=\"\">Integrated Service Building<\/option>\n<option value=\"tfa_91\" id=\"tfa_91\" class=\"\">Library<\/option>\n<option value=\"tfa_92\" id=\"tfa_92\" class=\"\">Loso<\/option>\n<option value=\"tfa_93\" id=\"tfa_93\" class=\"\">Physical Plant<\/option>\n<option value=\"tfa_94\" id=\"tfa_94\" class=\"\">Quinn<\/option>\n<option value=\"tfa_95\" id=\"tfa_95\" class=\"\">Student Health<\/option>\n<option value=\"tfa_96\" id=\"tfa_96\" class=\"\">Zabel<\/option>\n<option value=\"tfa_88\" id=\"tfa_88\" class=\"\">Other - add in comments below<\/option><\/select><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_97-D\">\n<label id=\"tfa_97-L\" class=\"label preField \" for=\"tfa_97\">Room Number<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_97\" name=\"tfa_97\" value=\"\" title=\"Room Number\" class=\"\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_142-D\" role=\"group\" aria-labelledby=\"tfa_142-L\" data-tfa-labelledby=\"-L tfa_142-L\">\n<label id=\"tfa_142-L\" class=\"label preField \" data-tfa-check-label-for=\"tfa_142\">Do you require an estimate for your request? (Please allow 48-72 hours for an event estimate.)<\/label><br><div class=\"inputWrapper\"><span id=\"tfa_142\" class=\"choices vertical \"><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_143\" class=\"\" id=\"tfa_143\" name=\"tfa_143\" aria-labelledby=\"tfa_143-L\" data-tfa-labelledby=\"tfa_142-L tfa_143-L\" data-tfa-parent-id=\"tfa_142\"><label class=\"label postField\" id=\"tfa_143-L\" for=\"tfa_143\"><span class=\"input-checkbox-faux\"><\/span>Yes<\/label><\/span><\/span><\/div>\n<\/div>\n<\/fieldset>\n<fieldset id=\"tfa_136\" class=\"section\">\n<legend id=\"tfa_136-L\"><b><u>Equipment Information<\/u><\/b><\/legend>\n<div class=\"oneField field-container-D    \" id=\"tfa_107-D\" role=\"group\" aria-labelledby=\"tfa_107-L\" data-tfa-labelledby=\"-L tfa_107-L\">\n<label id=\"tfa_107-L\" class=\"label preField reqMark\" data-tfa-check-label-for=\"tfa_107\" aria-label=\"Please select the equipment you will need for your event \u00a0 required\">Please select the equipment you will need for your event<\/label><br><div class=\"inputWrapper\"><table id=\"tfa_107\" class=\"choices columns2 required\" data-condition=\"`#tfa_8`\">\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_109\" class=\"\" id=\"tfa_109\" name=\"tfa_109\" aria-labelledby=\"tfa_109-L\" data-tfa-labelledby=\"tfa_107-L tfa_109-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_109-L\" for=\"tfa_109\"><span class=\"input-checkbox-faux\"><\/span>Livestream broadcast and\/or recording<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_127\" class=\"\" id=\"tfa_127\" name=\"tfa_127\" aria-labelledby=\"tfa_127-L\" data-tfa-labelledby=\"tfa_107-L tfa_127-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_127-L\" for=\"tfa_127\"><span class=\"input-checkbox-faux\"><\/span>Zoom<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_149\" class=\"\" id=\"tfa_149\" name=\"tfa_149\" aria-labelledby=\"tfa_149-L\" data-tfa-labelledby=\"tfa_107-L tfa_149-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_149-L\" for=\"tfa_149\"><span class=\"input-checkbox-faux\"><\/span>Smart Classroom<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_111\" class=\"\" id=\"tfa_111\" name=\"tfa_111\" aria-labelledby=\"tfa_111-L\" data-tfa-labelledby=\"tfa_107-L tfa_111-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_111-L\" for=\"tfa_111\"><span class=\"input-checkbox-faux\"><\/span>Speaker Phone<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_112\" class=\"\" id=\"tfa_112\" name=\"tfa_112\" aria-labelledby=\"tfa_112-L\" data-tfa-labelledby=\"tfa_107-L tfa_112-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_112-L\" for=\"tfa_112\"><span class=\"input-checkbox-faux\"><\/span>Data Projector - HDMI<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_113\" class=\"\" id=\"tfa_113\" name=\"tfa_113\" aria-labelledby=\"tfa_113-L\" data-tfa-labelledby=\"tfa_107-L tfa_113-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_113-L\" for=\"tfa_113\"><span class=\"input-checkbox-faux\"><\/span>Laptop Computer<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_116\" class=\"\" id=\"tfa_116\" name=\"tfa_116\" aria-labelledby=\"tfa_116-L\" data-tfa-labelledby=\"tfa_107-L tfa_116-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_116-L\" for=\"tfa_116\"><span class=\"input-checkbox-faux\"><\/span>Projection Screen<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_118\" class=\"\" id=\"tfa_118\" name=\"tfa_118\" aria-labelledby=\"tfa_118-L\" data-tfa-labelledby=\"tfa_107-L tfa_118-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_118-L\" for=\"tfa_118\"><span class=\"input-checkbox-faux\"><\/span>Public Address (PA) System &nbsp;(List details in comments section below)<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_115\" class=\"\" id=\"tfa_115\" name=\"tfa_115\" aria-labelledby=\"tfa_115-L\" data-tfa-labelledby=\"tfa_107-L tfa_115-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_115-L\" for=\"tfa_115\"><span class=\"input-checkbox-faux\"><\/span>Transparency Projector On Cart<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_120\" class=\"\" id=\"tfa_120\" name=\"tfa_120\" aria-labelledby=\"tfa_120-L\" data-tfa-labelledby=\"tfa_107-L tfa_120-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_120-L\" for=\"tfa_120\"><span class=\"input-checkbox-faux\"><\/span>Maintenance (List details in comments section below)<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_121\" class=\"\" id=\"tfa_121\" name=\"tfa_121\" aria-labelledby=\"tfa_121-L\" data-tfa-labelledby=\"tfa_107-L tfa_121-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_121-L\" for=\"tfa_121\"><span class=\"input-checkbox-faux\"><\/span>Webcam<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_146\" class=\"\" id=\"tfa_146\" name=\"tfa_146\" aria-labelledby=\"tfa_146-L\" data-tfa-labelledby=\"tfa_107-L tfa_146-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_146-L\" for=\"tfa_146\"><span class=\"input-checkbox-faux\"><\/span>Television<\/label><\/span><\/td>\n<\/tr>\n<tr><td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_150\" class=\"\" id=\"tfa_150\" name=\"tfa_150\" aria-labelledby=\"tfa_150-L\" data-tfa-labelledby=\"tfa_107-L tfa_150-L\" data-tfa-parent-id=\"tfa_107\"><label class=\"label postField\" id=\"tfa_150-L\" for=\"tfa_150\"><span class=\"input-checkbox-faux\"><\/span>Microphone<\/label><\/span><\/td><\/tr>\n<\/table><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_169-D\" role=\"group\" aria-labelledby=\"tfa_169-L\" data-tfa-labelledby=\"-L tfa_169-L\">\n<label id=\"tfa_169-L\" class=\"label preField reqMark\" data-tfa-check-label-for=\"tfa_169\" aria-label=\"Please select the equipment you will need for your event \u00a0 required\">Please select the equipment you will need for your event<\/label><br><div class=\"inputWrapper\"><table id=\"tfa_169\" class=\"choices columns2 required\" data-condition=\"`#tfa_80` OR `#tfa_81`\">\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_170\" class=\"\" id=\"tfa_170\" name=\"tfa_170\" aria-labelledby=\"tfa_170-L\" data-tfa-labelledby=\"tfa_169-L tfa_170-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_170-L\" for=\"tfa_170\"><span class=\"input-checkbox-faux\"><\/span>Livestream broadcast and\/or recording<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_171\" class=\"\" id=\"tfa_171\" name=\"tfa_171\" aria-labelledby=\"tfa_171-L\" data-tfa-labelledby=\"tfa_169-L tfa_171-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_171-L\" for=\"tfa_171\"><span class=\"input-checkbox-faux\"><\/span>Zoom<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_172\" class=\"\" id=\"tfa_172\" name=\"tfa_172\" aria-labelledby=\"tfa_172-L\" data-tfa-labelledby=\"tfa_169-L tfa_172-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_172-L\" for=\"tfa_172\"><span class=\"input-checkbox-faux\"><\/span>Smart Classroom<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_173\" class=\"\" id=\"tfa_173\" name=\"tfa_173\" aria-labelledby=\"tfa_173-L\" data-tfa-labelledby=\"tfa_169-L tfa_173-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_173-L\" for=\"tfa_173\"><span class=\"input-checkbox-faux\"><\/span>Speaker Phone<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_174\" class=\"\" id=\"tfa_174\" name=\"tfa_174\" aria-labelledby=\"tfa_174-L\" data-tfa-labelledby=\"tfa_169-L tfa_174-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_174-L\" for=\"tfa_174\"><span class=\"input-checkbox-faux\"><\/span>Data Projector - HDMI<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_175\" class=\"\" id=\"tfa_175\" name=\"tfa_175\" aria-labelledby=\"tfa_175-L\" data-tfa-labelledby=\"tfa_169-L tfa_175-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_175-L\" for=\"tfa_175\"><span class=\"input-checkbox-faux\"><\/span>Laptop Computer<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_176\" class=\"\" id=\"tfa_176\" name=\"tfa_176\" aria-labelledby=\"tfa_176-L\" data-tfa-labelledby=\"tfa_169-L tfa_176-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_176-L\" for=\"tfa_176\"><span class=\"input-checkbox-faux\"><\/span>Projection Screen<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_177\" class=\"\" id=\"tfa_177\" name=\"tfa_177\" aria-labelledby=\"tfa_177-L\" data-tfa-labelledby=\"tfa_169-L tfa_177-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_177-L\" for=\"tfa_177\"><span class=\"input-checkbox-faux\"><\/span>Public Address (PA) System &nbsp;(List details in comments section below)<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_178\" class=\"\" id=\"tfa_178\" name=\"tfa_178\" aria-labelledby=\"tfa_178-L\" data-tfa-labelledby=\"tfa_169-L tfa_178-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_178-L\" for=\"tfa_178\"><span class=\"input-checkbox-faux\"><\/span>Transparency Projector On Cart<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_179\" class=\"\" id=\"tfa_179\" name=\"tfa_179\" aria-labelledby=\"tfa_179-L\" data-tfa-labelledby=\"tfa_169-L tfa_179-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_179-L\" for=\"tfa_179\"><span class=\"input-checkbox-faux\"><\/span>Maintenance (List details in comments section below)<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_180\" class=\"\" id=\"tfa_180\" name=\"tfa_180\" aria-labelledby=\"tfa_180-L\" data-tfa-labelledby=\"tfa_169-L tfa_180-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_180-L\" for=\"tfa_180\"><span class=\"input-checkbox-faux\"><\/span>Webcam<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_184\" class=\"\" id=\"tfa_184\" name=\"tfa_184\" aria-labelledby=\"tfa_184-L\" data-tfa-labelledby=\"tfa_169-L tfa_184-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_184-L\" for=\"tfa_184\"><span class=\"input-checkbox-faux\"><\/span>Television<\/label><\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_185\" class=\"\" id=\"tfa_185\" name=\"tfa_185\" aria-labelledby=\"tfa_185-L\" data-tfa-labelledby=\"tfa_169-L tfa_185-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_185-L\" for=\"tfa_185\"><span class=\"input-checkbox-faux\"><\/span>Microphone<\/label><\/span><\/td>\n<td><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_186\" class=\"\" id=\"tfa_186\" name=\"tfa_186\" data-conditionals=\"#tfa_187\" aria-labelledby=\"tfa_186-L\" data-tfa-labelledby=\"tfa_169-L tfa_186-L\" data-tfa-parent-id=\"tfa_169\"><label class=\"label postField\" id=\"tfa_186-L\" for=\"tfa_186\"><span class=\"input-checkbox-faux\"><\/span>Network<\/label><\/span><\/td>\n<\/tr>\n<\/table><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_187-D\">\n<label id=\"tfa_187-L\" class=\"label preField reqMark\" for=\"tfa_187\">What are the type of network equipment\/needs?<\/label><br><div class=\"inputWrapper\"><textarea aria-required=\"true\" id=\"tfa_187\" name=\"tfa_187\" data-condition=\"`#tfa_186`\" title=\"What are the type of network equipment\/needs?\" class=\"required\"><\/textarea><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_122-D\">\n<label id=\"tfa_122-L\" class=\"label preField \" for=\"tfa_122\">Additional Comments or Setup Instructions<\/label><br><div class=\"inputWrapper\"><textarea id=\"tfa_122\" name=\"tfa_122\" title=\"Additional Comments or Setup Instructions\" class=\"\"><\/textarea><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_137-D\" role=\"group\" aria-labelledby=\"tfa_137-L\" data-tfa-labelledby=\"-L tfa_137-L\">\n<label id=\"tfa_137-L\" class=\"label preField reqMark\" data-tfa-check-label-for=\"tfa_137\" aria-label=\"By clicking this box you acknowledge that you have read the AV rates page(https:\/\/www.eou.edu\/information-technology\/rates-and-policies\/) and are aware of the possibility ofovertime charges, administrative charges, and changes to quotes due tochanges from the original request. \u00a0 required\">By clicking this box you acknowledge that you have read the AV rates page<br>(<a href=\"https:\/\/www.eou.edu\/information-technology\/rates-and-policies\/\" target=\"_blank\">https:\/\/www.eou.edu\/information-technology\/rates-and-policies\/<\/a>) and are aware of the possibility of<br>overtime charges, administrative charges, and changes to quotes due to<br>changes from the original request.<\/label><br><div class=\"inputWrapper\"><span id=\"tfa_137\" class=\"choices vertical required\"><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_138\" class=\"\" id=\"tfa_138\" name=\"tfa_138\" aria-labelledby=\"tfa_138-L\" data-tfa-labelledby=\"tfa_137-L tfa_138-L\" data-tfa-parent-id=\"tfa_137\"><label class=\"label postField\" id=\"tfa_138-L\" for=\"tfa_138\"><span class=\"input-checkbox-faux\"><\/span>Yes, I comply that I'm aware of the AV rates along with the possibility&nbsp;<span style=\"font-family: Arial, Arial, Helvetica, sans-serif; white-space: nowrap;\">of<br>overtime charges, administrative charges, and changes to quotes due<br>to changes from the original request.<\/span><br>&nbsp;<\/label><\/span><\/span><\/div>\n<\/div>\n<\/fieldset>\n<div class=\"actions\" id=\"217754-A\" data-contentid=\"submit_button\">\n<div id=\"google-captcha\" style=\"display: none\">\n<br><div class=\"captcha\">\n<div class=\"oneField\">\n<div class=\"g-recaptcha\" id=\"g-recaptcha-render-div\"><\/div>\n<div class=\"g-captcha-error\"><\/div>\n<br>\n<\/div>\n<div class=\"captchaHelp\">reCAPTCHA helps prevent automated form spam.<br>\n<\/div>\n<div id=\"disabled-explanation\" class=\"captchaHelp\" style=\"display: none\">The submit button will be disabled until you complete the CAPTCHA.<\/div>\n<\/div>\n<\/div>\n<input type=\"submit\" data-label=\"Submit\" class=\"primaryAction\" id=\"submit_button\" value=\"Submit\">\n<\/div>\n<div style=\"clear:both\"><\/div>\n<input type=\"hidden\" value=\"14-ded464c350ca854d9cab27c53e59473b\" name=\"tfa_dbCounters\" id=\"tfa_dbCounters\" autocomplete=\"off\"><input type=\"hidden\" value=\"217754\" name=\"tfa_dbFormId\" id=\"tfa_dbFormId\"><input type=\"hidden\" value=\"\" name=\"tfa_dbResponseId\" id=\"tfa_dbResponseId\"><input type=\"hidden\" value=\"5f6392141f89356f3e0a6465197dc884\" name=\"tfa_dbControl\" id=\"tfa_dbControl\"><input type=\"hidden\" value=\"\" name=\"tfa_dbWorkflowSessionUuid\" id=\"tfa_dbWorkflowSessionUuid\"><input type=\"hidden\" value=\"1776623751\" name=\"tfa_dbTimeStarted\" id=\"tfa_dbTimeStarted\" autocomplete=\"off\"><input type=\"hidden\" value=\"84\" name=\"tfa_dbVersionId\" id=\"tfa_dbVersionId\"><input type=\"hidden\" value=\"\" name=\"tfa_switchedoff\" id=\"tfa_switchedoff\">\n<\/form>\n<\/div><\/div><div class=\"wFormFooter\"><p class=\"supportInfo\"><a target=\"new\" class=\"contactInfoLink\" href=\"https:\/\/eou.tfaforms.net\/forms\/help\/217754\" data-testid=\"contact-info-link\">Contact Information<\/a><br><\/p><\/div>\n  <p class=\"supportInfo\" >\n      <\/p>\n <\/div>\n\n<script\n    id=\"analytics-collector-script\"\n    type=\"text\/javascript\"\n    src=\"https:\/\/eou.tfaforms.net\/dist\/analytics\/data-collector.f9f54c12ade21135b7c2.js\"\n    data-customer-id=\"471\"\n    data-endpoint=\"https:\/\/analytics.formassembly.com\/v1\/traces\"\n><\/script>\n\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":491,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-198","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/pages\/198","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/users\/491"}],"replies":[{"embeddable":true,"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/comments?post=198"}],"version-history":[{"count":1,"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/pages\/198\/revisions"}],"predecessor-version":[{"id":199,"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/pages\/198\/revisions\/199"}],"wp:attachment":[{"href":"https:\/\/www.eou.edu\/information-technology\/wp-json\/wp\/v2\/media?parent=198"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}