<?php $__env->startSection('page_title'); ?>
    OSAA - <?php echo ucfirst(strtolower($for)); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_sub_title'); ?>    
   OSAA Information and Resources for <?php echo ucfirst(strtolower($for)); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    @parent

    <style type="text/css">
        h3 {
            color: #990000 !important;
        }

        .course_item {
            margin-bottom: 1.5em;
        }

        .course_item img {
            width: 80px;
            float: left;
            margin: 0 10px 0 0;
        }

        .course_item .course_title {
            font-weight: bold;
            font-size: 12pt;
        }

        .course_item .course_when {
            font-style: italic;
            font-size: 9pt;            
        }

        .course_item .course_link {
            
        }    

        .course_item .course_name {
            font-size: 9pt;
        }

        ol li {
            margin-bottom: 1em;
        }

        form.workshop_registration label {
            font-weight: bold;
            width: 100px;
            display: inline-block;
        }

        .success_bar {
            position: fixed;
            top: 600px;
            left: 0;
            width: 100%;
            padding: 0.25em 0;
            line-height: 1.5em;
            background-color: rgba(176, 255, 190, 0.0);
            border-bottom: 2px solid rgba(13, 88, 27, 0.50);
            border-top: 2px solid rgba(13, 88, 27, 0.50);
            z-index: 500;
        }

        .success_bar .message {
            width: 1200px;
            margin: 0 auto;
            font-size: 14pt;
            color: #151515;
        }     
        
        .required {
            color: #990000;
            font-weight: bold;
            position: absolute;
        }

        .ui-accordion-header {
            font-size: 10pt !important;
            margin: 0 !important;
            color: #222222 !important;
        }

        .header_selected {
            color: #1db73a;
        }

        form.workshop_registration .date_title {
            width: 300px;
            display: inline-block;
        }

        form.workshop_registration .session_title {            
            width: 400px;
            display: inline-block;
        }

        form.workshop_registration .options_title {
            float: right;
            text-align: right;            
        }

        form.workshop_registration .date_option_info table {
            border-collapse: collapse;            
            width: 100%;
            border-left: 3px solid #dedede;
        }

        form.workshop_registration .date_option_info table td {
            vertical-align: top;
            line-height: 2em;
        }

        form.workshop_registration .date_option_info table td:first-child {
            padding-left: 12px;
        }

        form.workshop_registration .date_option_info table.session_hover {
            border-color: #f9bd01;            
        }

        form.workshop_registration .date_option_info table.session_selected {
            border-color: #31e653;
            background-color: #f5f5f5;
        }

        form.workshop_registration .submit_button_section {
            float: left;
            width: 440px;    
            position: relative;     
        }        

    </style>

    <?php /*  Google reCAPTCHA script  */ ?>
    <script src='https://www.google.com/recaptcha/api.js'></script>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('jquery_init'); ?>

    // Success bar
    $('.success_bar').animate({ 'top' : 32, 'background-color' : 'rgba(176, 255, 190, 1.0)'}, 1600, 'easeOutQuad', function ()
    {   
        $(this).delay(6000).fadeOut(4000);  

        $(this).hover(function ()
        {
            $(this).stop(true).css('opacity', '1.0');
        },
        function ()
        {
            $(this).fadeOut(4000);
        })
    });
  	

    $('.button').button();

  	$('.tabs').tabs();

    $('.tab_button')
        .button()
        .css({'font-size' : '12pt',
              'height' : '4.5em',
              'width' : '150px',
              'padding-top' : '1em',
              'margin-right' : '40px'})
        .click(function(event)
        {
            event.preventDefault();

            var target = $(this).attr('data-goto-index');
            $('.tabs').tabs('option', 'active', target);
        });

    

    /*
     * Tab activation and element focus
     */
    function activateTab(target_tab_id, focus)
    {
        var target_tab = $('.tabs ul:first li a[href="#' + target_tab_id + '"]');
        var target_tab_index = target_tab.attr('data-tab-order');

        $('.tabs').tabs('option', 'active', target_tab_index);        

        if (focus != null)
        {
            focusOnElement($(focus));
        }
    }    

    <?php if (!Helpers::strIsEmpty($info['tab'])): ?>
        var anchor = "<?php echo $info['tab']; ?>";        
    <?php else: ?>
        var anchor = window.location.hash.substring(1);
    <?php endif; ?>

    var focus = null;
    
    if (anchor)
    {
        activateTab(anchor, focus);
        focus = '#content';
    }

    <?php if (!Helpers::strIsEmpty($info['focus'])): ?>
        focus = "#<?php echo $info['focus']; ?>";        
    <?php endif; ?>

    function focusOnElement(focus_element)
    {        
        var top = focus_element.offset().top - 75;
        setTimeout(function() {                                
            $('html, body').scrollTop(top);
        }, 1);
    }   

    if (focus != null)
    {        
        focusOnElement($(focus));  
    }    

    // Required field marker
    $('[data-required]:not([data-required-indicator])').after('<span class="required">*</span>'); 

    <?php /*  AD workshop registration form scripts  */ ?>
    <?php if (!is_null($info['workshop_form'])): ?>

        var workshop_form = $('form.workshop_registration');

        // Hide optional form elements on load
        $('.attendee[data-index!="1"]', workshop_form).hide();
        $('.other_school', workshop_form).hide();

        // Change the number of attendees
        $('select[name="number"]', workshop_form).on('change', function()
        {
            // Get the number of attendees
            var number = parseInt($('option:selected', $(this)).val());

            updateAttendees(number);            

            // Focus on the first attendee's name
            $('input[name="attendees[1][name]"]', workshop_form).focus();            
        });

        if (parseInt($('select[name="number"] option:selected', workshop_form).val()) > 1)
        {
            updateAttendees(parseInt($('select[name="number"] option:selected', workshop_form).val()));            
        }

        function updateAttendees(number)
        {            
            // Show/hide as appropriate
            if (number == 1)
            {
                $('.attendee[data-index!="1"]', workshop_form).slideUp(400);
            }
            else if (number == 2)
            {
                $('.attendee[data-index="2"]', workshop_form).slideDown(400);
                $('.attendee[data-index="3"]', workshop_form).slideUp(400);
            } 
            else if (number == 3)
            {
                $('.attendee[data-index!="1"]', workshop_form).slideDown(400);
            }
        }

        // Change the school selection        
        $('select[name="school"]', workshop_form).on('change', function()
        {
            var value = $('option:selected', $(this)).val();
            schoolSelectOption(value, true);            
        });

        function schoolSelectOption(value, shift_focus)
        {            
            if (value == 'OTHER')
            {
                $('.other_school', workshop_form).slideDown(400);

                if (shift_focus || $('input[name="other_school"]', workshop_form).val() == "")
                {
                    $('input[name="other_school"]', workshop_form).focus();    
                }
            }
            else
            {
                $('.other_school', workshop_form).slideUp(400);
                
                if (shift_focus)
                {
                    $('input[name="attendees[1][name]"]', workshop_form).focus();
                }
            }
        }
        
        // Show other school option on reload
        schoolSelectOption($('select[name="school"] option:selected', workshop_form).val(), false);

        // Date accordion
        $('.dates', workshop_form).accordion({
            'header' : 'div.date_option',
            'heightStyle' : 'content',
            'collapsible' : true
        });

        // Session table hover style
        $('.date_option_info table', workshop_form)
            .hover(function() {
                $(this).addClass('session_hover');            
            },
            function() {
                $(this).removeClass('session_hover');            
            });

        // Tutorial check-box
        $('input[type="checkbox"][name="attending_tutorial"]', workshop_form).on('change', function(event)
        {
            var field = $(this);

            var checked = false;
            if (field.is(':checked'))
            {
                var checked = true;
            }

            var other_fields = $('input[type="checkbox"][name="attending_tutorial"][id!="' + field.attr('id') + '"]', workshop_form);

            if (checked)
            {
                other_fields.prop('checked', true).prop('disabled', true);
            }
            else
            {
                other_fields.prop('checked', false).prop('disabled', true);
            }
        });
            

        // Session radio button
        $('input[type="radio"][name="session"]', workshop_form).on('change', function(event)
        {
            // Remove all selection styles
            $('.date_option_info table', workshop_form).removeClass('session_selected');
            $('.date_title', workshop_form).removeClass('header_selected');
            $('.session_title', workshop_form).html('');
            $('input[type="checkbox"][name="attending_tutorial"]', workshop_form).prop('disabled', true);

            // Get the selected option title
            var session_title = $(this).attr('data-session-name');

            // Show selected session option
            $('#' + $(this).attr('data-paired-checkbox')).prop('disabled', false);
            $(this).parents('td').children('input[type="checkbox"][name="attending_tutorial"]').prop('disabled', false);
            console.log($('#' + $(this).attr('data-paired-checkbox')).attr('id'));

            $(this).parents('table').addClass('session_selected');
            $(this).parents('.date_option_info').prev().children('.date_title').addClass('header_selected');
            $(this).parents('.date_option_info').prev().children('.session_title').html(session_title);

        });

        $('input[type="submit"]', workshop_form)
            .button()
            .css({'font-size' : '11pt',
                  'padding-top' : '1.5em',
                  'padding-bottom' : '1.5em',
                  'position' : 'absolute',
                  'top' : '0.25em',
                  'right' : '-130px'})
            .click(function(event)
            {
                event.preventDefault();

                var form = $(this).parents('form');

                // Show a confirmation
                $('<div></div>')
                    .appendTo('body')
                    .dialog(
                    {                       
                        draggable : false,
                        resizable : false,
                        modal : true,
                        height : 275,
                        width : 425,                    
                        title : 'Confirm Registration',
                        buttons: [
                            {
                                text : "Register",
                                'class' : "float_left",
                                icons : { primary : 'ui-icon-check'},
                                click : function()
                                        {                                                       
                                            form.submit();
                                        }
                            },
                            {
                                text : "Cancel",
                                'class' : "float_right",
                                'data-autofocus' : "true",
                                icons : { primary : 'ui-icon-cancel'},
                                click : function()
                                        {
                                            // Close the dialog box
                                            $(this).dialog("close");                           
                                        }
                            }
                        ],
                        open : function ()
                            {  
                                var dialog_object = $(this);

                                var data = {
                                    'school' : $('select[name="school"] option:selected', form).text(),
                                    'number' : parseInt($('select[name="number"] option:selected', form).val()),
                                    'session' : $('input[name="session"]:checked', form).attr('data-session-name'),
                                    'date' : $('input[name="session"]:checked', form).attr('data-session-date'),
                                };

                                dialog_object.html('<br /><img src="<?php echo asset('/images/icons/help_24px.png'); ?>" alt="" title="" style="float: left; margin: 0 1em 0.5em 0;" />Is the following information correct?<br /><br /><br /><div style="font-size: 9pt;">' + data.school + ' is registering ' + data.number + ' attendee(s) for the session at ' + data.session + ' on ' + data.date + '.</div>');
                                
                                $('.ui-dialog-buttonpane').css('padding', '0 0.5em').css('font-size', '9pt');
                                $('.ui-dialog-buttonpane .ui-dialog-buttonset').css('width', '100%');   

                                $('[data-autofocus="true"]').focus();
                            },
                        close : function ()
                            {
                                var dialog_object = $(this);
                                $(dialog_object).remove();
                            }                
                    });
            });


    <?php endif; ?>

    $('#admin_secretaries_workshop_registration').hide();
    $('[data-action="admin_secretaries_workshop_registration"]').on('click', function(event)
    {
        event.preventDefault();

        var frame = $('#admin_secretaries_workshop_registration');

        if (!frame.is(':visible'))
        {
            frame.slideDown(400);
        }

    });

<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_functions'); ?>
	
<?php $__env->stopSection(); ?>


<?php $__env->startSection('main_content'); ?>    
  
    <?php /*  Success Bar  */ ?>
    <?php if (Session::has('success')): ?>
        <div class="success_bar">
            <div class="message">       
                <?php echo Session::get('success'); ?>
            </div>      
        </div>
    <?php endif; ?> 


    <div class="tabs awards">
        <ul style="padding-left:5px; font-size:9pt;">            
            <li><a href="#administrators" data-tab-order="0">Administrators</a></li>
            <li><a href="#coaches" data-tab-order="1">Coaches</a></li>
            <li><a href="#requirements" data-tab-order="2">AD/Coach Requirements</a></li>
            <li><a href="#policies" data-tab-order="3">Policies, Forms, &amp; Links</a></li>
            <li><a href="#eligibility" data-tab-order="4">Eligibility</a></li>          
            <li><a href="#workshop" data-tab-order="5">Administrator Workshops</a></li>
            <li><a href="#resources" data-tab-order="6">Additional Resources</a></li>          
        </ul>
      

        <?php /*  Administrators  */ ?>
        <div id="administrators">
            <a href="http://www.oadaonline.org/" style="float: right; text-align: center; border: none; margin: 1em 1.5em;">
                <img src="<?php echo asset('images/icons/oada.jpg'); ?>" height="50px" border="0" /><br/>
                Oregon Athletic<br>Directors Association
            </a>

            <h1>Administrators</h1>
            The OSAA values its relationship with administrators and support staffs of our member schools.  Your leadership allows the Association to function efficiently and effectively in enriching the educational experiences of more than 130,000 high school students annually throughout Oregon. We hope you'll find what you need at www.osaa.org to assist you in achieving our common educational goals. We encourage you to contact the OSAA staff directly if you have questions or need further clarification on a specific policy.

            <br /><br />          
            
            <div style="float: left; width: 400px;">

                <h2>Workshops</h2>
                <div style="margin-left: 40px; line-height: 1.25em;">
                    &raquo; <a href="#" data-action="admin_secretaries_workshop_registration">Administrative Secretaries Workshop - Sept. 26</a><br />
                    &raquo; <a href="<?php echo url('/administrators/workshop'); ?>">Administrator Workshop Registration</a><br />
					<?php /*  &raquo; <a href="<?php echo asset ('docs/osaainfo/New AD Workshop 2017.pdf'); ?>" target="_blank">New AD Workshop Flyer</a><br />  */ ?>                    
                </div>

            </div>

            <div style="float: left;">
                <h2>AD Checklists</h2>
                <div style="margin-left: 40px; line-height: 1.25em;">
                    &raquo; <a href="<?php echo asset ('docs/osaainfo/adchecklistfall.pdf'); ?>" target="_blank">Fall Checklist</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset ('docs/osaainfo/adchecklistwinter.pdf'); ?>" target="_blank">Winter Checklist</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset ('docs/osaainfo/adchecklistspring.pdf'); ?>" target="_blank">Spring Checklist</a>
                </div>
				
			  <h2>AD Workshops</h2>
				This is the 2018-19 AD Workshops that were presented to all schools.
                <div style="margin-left: 40px; line-height: 1.25em;">
                    &raquo; <a href="<?php echo asset ('docs/osaainfo/adworkshops.pptx'); ?>" target="_blank">PowerPoint</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset ('docs/osaainfo/adworkshops.pdf'); ?>" target="_blank">PDF</a> &nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset ('docs/osaainfo/18adpacket.pdf'); ?>" target="_blank">Packet</a>
                </div>
            </div>      

            <br class="clear" /><br />
            
            <?php if (true): ?>
                <iframe id="admin_secretaries_workshop_registration" height="700" allowTransparency="true" frameborder="0" scrolling="no" style="width: 100%; border: 1px solid #cccccc; height: 700px;"  src="https://osaa.wufoo.com/embed/r1g688w91wanitd/"><a href="https://osaa.wufoo.com/forms/r1g688w91wanitd/">Fill out the registration form.</a></iframe>
            <?php endif; ?>
            
            <h2>Professional Organizations for Administrators</h2>
            The OSAA has relationships with several professional organizations that work closely with school administrators.  Follow the links below for additional information.
            
            <div style="margin-left: 40px; line-height: 1.25em;">
                &raquo; <a href="http://www.oadaonline.org/" target="_blank">Oregon Athletic Directors Association (OADA)</a><br />
                &raquo; <a href="http://www.niaaa.org/about-the-niaaa/" target="_blank">National Interscholastic Athletic Administrators Association (NIAAA)</a><br />
                &raquo; <a href="http://www.cosa.k12.or.us/" target="_blank">Confederation of Oregon School Administrators (COSA)</a><br />
                &raquo; <a href="http://nassp.org/" target="_blank">National Association of Secondary School Principals (NASSP)</a><br />
                &raquo; <a href="http://www.nfhs.org/" target="_blank">National Federation of State High School Associations (NFHS)</a><br />     
    
            </div>

            <br /><br />

        </div>


        <?php /*  Coaches  */ ?>
        <div id="coaches">
            <a href="http://www.oregoncoach.org/" style="float: right; text-align: center; border: none; margin: 1em 1.5em;">
                <img src="<?php echo asset('images/icons/oaca.jpg'); ?>" height="50px" border="0" /><br/>
                Oregon Athletic<br>Coaches Association
            </a>

            <h1>Coaches</h1>
            School coaches are tremendously important educators who have the opportunity to make lasting impressions on students as they learn 
            lifelong lessons through participation in activities. Thank you for your efforts in developing your students. We hope you'll find this page helpful in reaching your goals.

            <br /><br />
            
            <h2>Professional Organizations for Coaches</h2>
            The OSAA works closely with several professional organizations that provide excellent resources for high school coaches.  Follow the links below for additional information.
            
            <div style="margin-left: 40px; line-height: 1.25em;">
                &raquo; <a href="http://www.nfhs.org/" target="_blank">National Federation of State High School Associations (NFHS)</a><br />
                &raquo; <a href="http://www.oregoncoach.org/" target="_blank">Oregon Athletic Coaches Association (OACA)</a><br />
                &raquo; <a href="http://www.occa.net/" target="_blank">Oregon Cheerleading Coaches Association (OCCA)</a><br />
                &raquo; <a href="http://www.ddcaoregon.org/" target="_blank">Dance Drill Coaches Association (DDCA) </a><br />
                &raquo; <a href="http://www.speechoregon.org/" target="_blank">Oregon High School Speech League Coaches Association (OHSSL)</a>              
            </div>

            <br /><br />

            <h2>NFHS Rules App</h2>
            <img src="<?php echo asset('/images/logos/nfhs_128px.png'); ?>" alt="" title="" style="width: 64px; float: left; margin: 0 10px 0 30px;" />
            The NFHS Rules App contains quizzes for all NFHS sports and provides access to the<br />NFHS Rules books for each sport, right in the 
            palm of your hand.<br />
            <a href="https://play.google.com/store/apps/details?id=com.org.nfhs.rulebook&amp;hl=en" target="_blank" style=""><img src="<?php echo asset('/images/logos/play_store_128x38px.png'); ?>" alt="" title="" style="margin: 0.5em 40px 0 0;" /></a>

            <a href="https://itunes.apple.com/us/app/nfhs-rules/id1173502036?mt=8" target="_blank" style=""><img src="<?php echo asset('/images/logos/app_store_128x38px.png'); ?>" alt="" title="" style="margin: 0.5em 0 0 0;" /></a>

            <br />

            <h3>How to Access NFHS Digital Rules Books</h3>
            Varsity team head coaches with contact information entered on their school's Manage Staff page can access the digital NFHS Rules books for their respective sport through the NFHS Rules App:<br />
            <ol class="small" style="margin-top: 0.5em;">                
                <li style="margin-top: 0.5em;">Digital subscriptions are uploaded once per season by OSAA staff.</li>
                <li style="margin-top: 0.5em;">Once your subscription has been processed by the NFHS, you will receive an email notification indicating you have been granted access to a specific rules book.</li>                
                <li style="margin-top: 0.5em;">Download the <b>NFHS Rules</b> app from the Google Play Store or iTunes App Store; you can use the links above.</li>                
                <li style="margin-top: 0.5em;">Open the NFHS Rules app on your mobile device. At the bottom of the screen, select "Signup". Enter your name and profile information. The email address you type in <b>MUST</b> match the address listed on your school page (the same email address which was sent the NFHS automated notification).</li>
                <li style="margin-top: 0.5em;">Once registered with your account, within the app go to the "My Books" section.  Here you will see a download icon for the free books assigned to your sport. All other books will show a shopping cart icon to subscribe to the book for $6.99.  Your free books will appear under your subscription after you receive the NFHS automated notification.</li>                
            </ol>
            
        </div>

        <?php /*  Coaching Requirements  */ ?>
        <div id="requirements">

          <h1>AD and Coach Requirements</h1>

          <div class="columns">
              <div class="half">
                  This page highlights the certification and training program requirements for Oregon high school Athletic Directors and Coaches.  Full details on AD and Coach certification requirements can be found in the <a href="<?php echo url('governance/handbooks/osaa#_Toc45434541'); ?>" target="_blank">OSAA Handbook</a>.

                  <br /><br />
          
                  For athletics (football, volleyball, soccer, cross country, basketball, swimming, wrestling, baseball, softball, track &amp; field, golf, and tennis), coaches must complete required certifications before interacting with participants during that sport's season.

                  <br /><br />

                  Cheerleading and dance/drill coaches must complete required certifications by the first day of the association year (the first practice date in the fall).
              </div>
              <div class="half">
                  <h2 style="padding-top: 0; margin-top: 0;">Lookup a Certification</h2> 
                  <b>Certified through NFHS <u>after August 1, 2007</u></b><br />
                  <div style="margin-left: 40px;">
                      &raquo; <a href="http://nfhslearn.com/lookup/users" target="_blank">NFHS Learning Center Lookup</a>
                  </div>
                  <br />
                  <b>NFHS Fundamentals of Coaching certified through ASEP <u>prior to August 1, 2007</u> (Sorted by last name)</b><br />
                  <div style="margin-left: 40px;">
                      &raquo; <a href="<?php echo asset ('docs/osaainfo/ASEPCertifiedCoachesList.pdf'); ?>" target="_blank">ASEP Certified List</a><br />
                      <div class="small gray" style="line-height: 1.15em;">NOTE: All ASEP-certified coaches will be grandfathered into the OSAA requirement for the NFHS Fundamentals of Coaching course, these previously certified coaches are <b>not required</b> to take the NFHS Fundamentals of Coaching course.</div>
                  </div>
                  <br />
                  <b>ODE Steroid List of Completed Assessments</b>
                  <div style="margin-left: 40px;">
                      &raquo; <a href="<?php echo url('/steroids'); ?>" target="_blank">ODE Training and Assessment</a>
                  </div>
              </div>

              <br class="clear" />
          </div>            

          <br />

          <h2>Required Certifications and Training Courses for Oregon High School Coaches</h2>

          <div class="columns">
              <div class="half">
                  
                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/fundamentals_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">NFHS Fundamentals of Coaching</div>
                      <div class="course_when">One time requirement, or grandfathered</div><br />
                      <div class="course_name">"NFHS Fundamentals of Coaching" - $50</div>
                      <div class="course_link">
                          &raquo; <a href="http://nfhslearn.com/courses/61026/fundamentals-of-coaching" target="_blank">NFHS Online Course</a>
                      </div>                    
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/concussion_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">Concussion in Sports</div>
                      <div class="course_when">Annual - required every year</div><br />
                      <div class="course_name">"NFHS Concussion in Sports" - free</div>
                      <div class="course_link">
                          &raquo; <a href="http://nfhslearn.com/courses/61037/concussion-in-sports" target="_blank">NFHS Online Course</a>
                      </div>                    
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/heat_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">Heat Illness Prevention</div>
                      <div class="course_when">Quadrennial - required every 4 years<br />Annual - required every year (only for football coaches)</div>
                      <div class="course_name">"NFHS Heat Illness Prevention" - free</div>
                      <div class="course_link">
                          &raquo; <a href="http://nfhslearn.com/courses/34000/heat-illness-prevention" target="_blank">NFHS Online Course</a>
                      </div>                    
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/steroids_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">Appearance and Performance Enhancing Drugs and Substances Training</div>
                      <div class="course_when">Quadrennial - required every 4 years</div>
                      <div class="course_name">NFHS Online Course or ODE/Other Training</div>
                      <div class="course_link">
                          &raquo; <a href="<?php echo url('steroids'); ?>" target="_blank">Steroids Training</a>
                      </div>                    
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/first_aid_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">First Aid</div>
                      <div class="course_when">Optional - per district/school policy</div><br />
                      <div class="course_name">Not an OSAA or state requirement</div><br />
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/cpr_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">CPR / AED Training</div>
                      <div class="course_when">Optional - per district/school policy</div><br />
                      <div class="course_name">Not an OSAA or state requirement</div>
                  </div>

              </div>

              <div class="half">                

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/spirit_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">OSAA Spirit Safety</div>
                      <div class="course_when">Annual - required every year (only for cheerleading &amp; dance/drill coaches)</div>
                      <div class="course_name">OSAA Online Training - free</div>
                      <div class="course_link">
                          &raquo; <a href="<?php echo url('/spirit-safety'); ?>" target="_blank">OSAA Spirit Safety</a>
                      </div>                    
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/heads_up_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">Heads Up Football Certification</div>
                      <div class="course_when">Annual - required every year (only for football coaches)</div>
                      <div class="course_name">Composed of 4 course components that must be completed annually: <u>Concussion in Sports</u>, <u>Heat Illness Prevention</u>, <u>Sudden Cardiac Arrest</u>, <u>Blocking, Tackling &amp; Equipment Fitting</u></div>                    
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/cardiac_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">Sudden Cardiac Arrest</div>
                      <div class="course_when">Annual - required every year (only for football coaches)</div><br />
                      <div class="course_name">"NFHS Sudden Cardiac Arrest" - free</div> 
                       <div class="course_link">
                          &raquo; <a href="http://nfhslearn.com/courses/61032/sudden-cardiac-arrest" target="_blank">NFHS Online Course</a>
                      </div>                    
                  </div>

                  <div class="course_item">
                      <img src="<?php echo asset('/images/icons/badges/blocking_128px.png'); ?>" alt="" title="" />
                      <div class="course_title">Blocking, Shoulder Tackling &amp; Equipment Fitting</div>
                      <div class="course_when">Annual - required every year (only for football coaches)</div>
                      <div class="course_name">"NFHS Blocking, Shoulder Tackling &amp; Equipment Fitting" - $10</div> 
                       <div class="course_link">
                          &raquo; <a href="http://nfhslearn.com/courses/61052/blocking-tackling-equipment-fitting" target="_blank">NFHS Online Course</a>
                      </div>                    
                  </div>

                 

                  <br /><br />

                  <a href="http://www.nfhslearn.com" target="_blank">
                      <img src="<?php echo asset('images/icons/NFHSlearningcenter.jpg'); ?>" height="42px" border="0" />
                  </a>
                  <div class="small gray">Visit the NFHS Learning Center for additional online courses.</div>
              
              </div>

              <br class="clear" />            

              <h2>Online Training Course Help</h2>
              <a href="http://nfhslearn.com/help_desk" target="_blank">Answers to common NFHS online course questions, logins, etc.</a>

              <br /><br />

              <h2>Frequently Asked Questions</h2>
              <div style="font-size: 9pt;">
                  <b>Q. Does certification through the American Sport Education Program (ASEP) satisfy the one time requirement for NFHS Fundamentals of Coaching?</b><br />
                  A. Yes, so long as the athletic director or coach was certified through ASEP prior to August 1, 2007.  Thereafter, only the NFHS Coach Education Program "Fundamentals of Coaching" will satisfy this requirement unless an exception is granted in writing by the OSAA.
                  
                  <br /><br >

                  <b>Q. When must a coach be certified?</b><br />
                  A. All coaches must be certified prior to assuming coaching duties unless an emergency exception is authorized in writing by the OSAA.  This includes cheerleading coaches, dance/drill coaches, and choreographers at schools that do not participate in competitions.
              
                  <br /><br />

                  <b>Q. Is certification required of volunteer coaches?</b><br />
                  A. Yes.
             
                  <br /><br />

                  <b>Q. Must a "guest" coach be certified?</b><br />
                  A. No, but if the coach has contact with students more than three times in a sport season, the coach shall no longer be considered a "guest" and must be certified.  A non-certified "guest" coach may not serve as a coach at a contest.  Coaches may not use this provision to circumvent the training requirements, i.e. a regular coach does not get a three day grace period to interact with participants prior to being wholly certified.
              
                  <br /><br />

                  <b>Q.  May a school bring in alumni or other non-high school personnel to scrimmage with teams or individuals as "guest coaches" if those personnel are limited to student contact on no more than three occasions during the sport season?</b><br />
                  A. No. The "guest coach" exception is intended to allow a limited number of visits by a guest instructor; it is NOT intended to allow coaches to bring in coaches or players to participate in drills or scrimmages against teams or individuals.  Any attempt to circumvent the Participation Limitations by calling practice participants "guest coaches" or to have coaches interact with participants prior to being wholly certified would be a violation of OSAA rules.
              
                  <br /><br />

                  <b>Q. In individual sports, may a parent or non-certified coach accompany a participant to a contest as the school representative if that person is an authorized representative of the principal?</b><br />
                  A. Yes, but the authorized representative may not coach the participant unless specific permission has been granted in writing by the Executive Director.
              
                  <br /><br />

                  <b>Q. Does the OSAA require high school coaches to have current first aid certification?</b><br />
                  A. No.  However, coaches should check with their athletic directors as most high schools or school districts have this as a requirement.

                  <br /><br />

                  <b>Q. How long is the Heads Up Football certification valid?</b><br />
                  A. The answer depends on the four component courses that comprise the Heads Up Football certification: Concussion in Sports, Heat Illness Prevention, Sudden Cardiac Arrest, and Blocking, Tackling &amp; Equipment Fitting.  Heads Up Football certification expires one year after the earliest component completion date.  Even if an individual component course is valid for more than one year, for the purposes of retaining Heads Up Football certification, the four component courses must be completed annually.
              </div>

          </div>        

        </div>

    
        <?php /*  Policies, Forms, & Links  */ ?>
        <div id="policies">            

            <h1>OSAA Policies, Forms, and Links</h1>
            OSAA policies and forms can be found by using the <b>Governance</b> navigational bar at the top of every OSAA webpage.  Most of the questions we receive from <?php echo $for; ?> are on the following topics.

            <br /><br />

            <h2>Policies</h2>
            <div style="margin-left: 40px; line-height: 1.25em;">            
                <div class="columns">
                    <div class="half">
                        &raquo; <a href="<?php echo url('governance/handbooks'); ?>" target="_blank">OSAA Handbooks</a><br />                        
                        &raquo; <a href="<?php echo asset ('docs/osaainfo/coachescodeofethics.pdf'); ?>" target="_blank">OSAA Coaches Code of Ethics</a><br />            
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100349'); ?>" target="_blank">Ejection Policies</a><br />
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100422'); ?>" target="_blank">Practice Model</a><br />
                        &raquo; <a href="/heat-index" target="_blank">Heat Index Calculator and Subscription Alerts</a><br />
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100399'); ?>" target="_blank">Moratorium Week</a><br />
                    </div>
                    <div class="half">
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100497'); ?>" target="_blank">Participation Limitations by Sport</a><br />
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100420'); ?>" target="_blank">Practice Limitation Rule (6A Pilot)</a><br />
						&raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100421'); ?>" target="_blank">Practice Limitation Rule (Rule of Two)</a><br />
                        &raquo; <a href="<?php echo asset ('docs/osaainfo/SportsmanshipSpectatorConduct.pdf'); ?>" target="_blank">Spectator Conduct Policies</a><br />
                        &raquo; <a href="<?php echo asset ('docs/forms/SanctioningRequestProcedures.pdf'); ?>" target="_blank">NFHS Sanctioning Request Procedures (Non-Bordering States)</a><br />
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100331'); ?>" target="_blank">Charitable Causes Policy</a><br />
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100338'); ?>" target="_blank">Concussion Management Policy</a>
                    </div>
                </div>

                <br class="clear" />
            </div>

            <br />

            <h2>Forms</h2>
            For a complete list of OSAA forms:
            <div style="margin-left: 40px; line-height: 1.25em;">                        
                &raquo; <a href="<?php echo url('governance/forms'); ?>">OSAA Forms</a><br />            
            </div>

            <br />

            <h2>Links</h2>
            <div style="margin-left: 40px; line-height: 1.25em;">            
                <div class="columns">
                    <div class="half">
                        &raquo; <a href="<?php echo url('governance/handbooks'); ?>" target="_blank">OSAA Handbooks</a><br />
                        &raquo; <a href="<?php echo url('governance/forms'); ?>" target="_blank">OSAA Forms</a><br />                        
              	        &raquo; <a href="<?php echo url('/forms/ejection'); ?>" target="_blank">Online Ejection Report</a><br />
            	          &raquo; <a href="<?php echo url('/forms/eligibility'); ?>" target="_blank">Online Student Eligibility Form</a><br />
                        &raquo; <a href="<?php echo url('about'); ?>">About the OSAA</a><br />
                        &raquo; <a href="<?php echo url('contact'); ?>">Contact Information</a><br />
                        &raquo; <a href="<?php echo url('privacy'); ?>">Privacy Policy</a><br />
                        &raquo; <a href="<?php echo url('weekly'); ?> ">OSAA Weekly (Newsletter)</a><br />
                    </div>

                    <div class="half">
                        &raquo; <a href="<?php echo url('classifieds'); ?>">Classifieds</a><br />
                        &raquo; <a href="<?php echo url('archives'); ?>">Records/Archives</a><br />
                        &raquo; <a href="http://www.osaafoundation.org" target="_blank">OSAA Foundation</a><br />
                        &raquo; <a href="<?php echo url('health-safety'); ?>">Health &amp; Safety</a><br />
                        &raquo; <a href="<?php echo url('/mobile'); ?>">OSAA Mobile</a><br />
                        &raquo; <a href="<?php echo url('radio-network'); ?>">OSAA Radio Network</a><br />
                        &raquo; <a href="<?php echo url('sponsors'); ?>">Sponsors</a><br />
                        &raquo; <a href="<?php echo url('links'); ?>">More Links</a>
                    </div>
                </div>

                <br class="clear" />
    			  </div>

            <br />

        </div>

        <?php /*  Eligibility  */ ?>
        <div id="eligibility">            

            <h1>OSAA Eligibility Policies and Forms</h1>
            OSAA eligibility policies and forms can be found by using the <b>Governance</b> navigational bar at the top of every OSAA webpage.  Most of the eligibility questions we receive in the office are on the following topics.

            <br /><br />

            <h2>Policies</h2>
            <div style="margin-left: 40px; line-height: 1.25em;">            
                <div class="columns">
                    <div class="half">
                        &raquo; <a href="<?php echo asset ('docs/handbooks/MajorRuleChanges.pdf'); ?>" target="_blank">Major Rule Changes</a><br />
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100272'); ?>" target="_blank">Academic Eligibility</a><br />
                        &raquo; <a href="<?php echo asset ('docs/handbooks/rule8chart.pdf'); ?>" target="_blank">Satisfactory Progress Toward Graduation Chart</a><br />
                        
                        <br />

                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100282'); ?>" target="_blank">Transfers</a><br />
                        &raquo; <a href="<?php echo asset ('docs/forms/EligibleStudentTransferCertificate.pdf'); ?>" target="_blank">Eligible Student Transfer Certificate</a><br />
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100293'); ?>" target="_blank">Transfers to a School with Affiliation</a><br />
                        &raquo; <a href="<?php echo asset ('docs/forms/StudentIntentToTransfer.pdf'); ?>" target="_blank">Student Intent to Transfer Certificate</a><br />
                        
                        <br />

                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100281'); ?>" target="_blank">School Representation</a><br />
                        &raquo; <a href="<?php echo asset ('docs/forms/SchoolRepresentationEligibilityCertificate.pdf'); ?>" target="_blank">School Representation Eligibility Certificate</a><br />
                        Charter Schools: &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100272'); ?>" target="_blank">Non-Member</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100272'); ?>" target="_blank">Full Member</a><br />
                        

                    </div>

                    <div class="half">
                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc456100355'); ?>" target="_blank">Foreign Students</a><br />
                        &raquo; <a href="<?php echo asset ('docs/forms/ForeignStudentEligibilityChecklist.pdf'); ?>" target="_blank">Foreign Student Eligibility Checklist</a><br />
                        &raquo; <a href="http://www.csiet.org/" target="_blank">CSIET List of Approved Programs</a><br />

                        <br />

                        &raquo; <a href="<?php echo url('governance/handbooks/osaa#_Toc426096934'); ?>" target="_blank">Home School Students</a><br />
                        &raquo; <a href="<?php echo asset ('docs/osaainfo/Home%20School%20Eligibility.pdf'); ?>" target="_blank">Home School Pamphlet</a><br />
                        &raquo; <a href="<?php echo asset ('docs/forms/HomeSchoolEligibilityParentChecklist.pdf'); ?>" target="_blank">Home School Eligibility Parent Checklist</a><br />

                        <br />
                        
                        <b>District Athletic Committee:</b><br />
                        &raquo; <a href="<?php echo url('/governance/committees#district-athletic-committees'); ?>">District Athletic Committees Page</a><br />                       
                    </div>
                </div>

                <br class="clear" />
            </div>

            <br />

            <h2>Forms</h2>        
            <div style="margin-left: 40px; line-height: 1.25em;">                        
                &raquo; <a href="<?php echo url('forms/eligibility'); ?>" target="_blank">Online Eligibility Request Form</a><br />
                &raquo; <a href="<?php echo url('forms/eligibility'); ?>" target="_blank">Lookup Student Eligibility Waiver</a><br />
                &raquo; <a href="<?php echo asset('docs/osaainfo/OnlineEligibilityInstructions.pdf'); ?>" target="_blank">Online Form Help &amp; Assistance</a><br />
                &raquo; <a href="<?php echo asset('docs/forms/EligibilityPrimerForParents.pdf'); ?>" target="_blank">Eligibility Primer for Parents</a><br />
            </div>

            <br />        

        </div>

    
        <?php /*  Additional Resources  */ ?>
        <div id="resources">
            <h1>Additional Resources</h1>
            The following additional resources provide quality information on pertinent subjects for high school coaches.
            
            <div style="margin-left: 40px; line-height: 1.25em;">    	          
    	          &raquo; <a href="http://www.nfhs.org/" target="_blank">NFHS Rule Changes and Updates (search by sport)</a><br />
                &raquo; <a href="<?php echo asset ('docs/osaainfo/08CaseForHSActivities.pdf'); ?>" target="_blank">NFHS Case for High School Activities</a><br />
                &raquo; <a href="http://www.freerecruitingwebinar.org/registration/oregon" target="_blank">FreeRecruitingWebinar.org Webinar for School Staff </a><br />
    	          &raquo; <a href="http://nfhslearn.com/courses/14000/ncaa-eligibility" target="_blank">NCAA Eligibility Center Coaching Education course (FREE)</a><br /> 	          
                &raquo; <a href="<?php echo asset ('docs/broadcast/OCRrelease.pdf'); ?>" target="_blank"> Inclusion of Students with Disabilities in High School Activities </a>
            </div>

            <br />

            <h2>Sportsmanship Resources</h2>
            <div style="margin-left: 40px; line-height: 1.25em;">
				&raquo; <a href="<?php echo asset ('docs/osaainfo/SupervisonGuidelinesandExpectations.pdf'); ?>" target="_blank">OSAA Supervision Guidelines and Expectations</a><br />    	         
				&raquo; <a href="<?php echo asset ('docs/osaainfo/SportsmanshipGuidebook2008.pdf'); ?>" target="_blank">OSAA Sportsmanship Guidebook</a><br />
                &raquo; <a href="<?php echo asset ('docs/osaainfo/SportsmanshipFlyer.pdf'); ?>" target="_blank">OSAA Sportsmanship Flyer</a><br />
    	        &raquo; <a href="<?php echo asset ('docs/osaainfo/PregamePA.pdf'); ?>" target="_blank">Sample Pre-Game PSA</a><br />
				&raquo; <a href="<?php echo asset ('docs/osaainfo/OSAA Standardized Public Address Announcements.pdf'); ?>" target="_blank">Sample Public Address Announcements</a>
            </div>

            <br /> 

            <h2>Beyond High School: College Bound Student Information</h2>
            The resources below should be utilized as part of a larger collaboration of efforts among the student, parents, coaches, school administrators, 
            and college compliance or admissions personnel. 
            <div style="margin-left: 40px; line-height: 1.25em;">
                <b>Choosing the Right School:</b>&nbsp;&nbsp;&raquo; <a href="http://www.collegeboard.com/student/csearch/index.html" target="_blank">College Board</a>&nbsp;&nbsp;&raquo; <a href="https://www.collegedata.com/cs/search/college/college_search_tmpl.jhtml?referrer=GoogleCollegeSearch" target="_blank">College Data</a><br />            
                
                <br />
                
                &raquo; <a href="http://www.ncaa.org/" target="_blank">National Collegiate Athletic Association (NCAA)</a><br />
                &raquo; <a href="http://eligibilitycenter.org/ECWR2/NCAA_EMS/NCAA.html" target="_blank">NCAA College-Bound Student-Athletes Information</a><br />
                &raquo; <a href="http://www.naia.org/" target="_blank">National Association of Intercollegiate Athletics (NAIA)</a><br />
                &raquo; <a href="http://www.playnaia.org/" target="_blank">NAIA Eligibility Center</a><br />
                &raquo; <a href="http://www.collegesportsinfo.org/" target="_blank">NAIA College Sports Information</a><br />
                &raquo; <a href="http://www.njcaa.org/index.cfm" target="_blank">National Junior College Athletic Association (NJCAA)</a><br />
                &raquo; <a href="http://www.ncaa.org/wps/wcm/connect/nli/nli" target="_blank">National Letter of Intent</a><br />
            </div>

            <br />
            
            <h2>Title IX Resources</h2>
            K.T. Emerson, OSAA Assistant Executive Director, (503) 682-6722 x227 | <?php echo Helpers::obfuscateEmailLink ("kte@osaa.org"); ?><br />
            Karin Moscon, ODE Education Specialist, Civil Rights, (503) 947-5706, <?php echo Helpers::obfuscateEmailLink ("karin.moscon@state.or.us"); ?><br />
            Tim Sell, Office for Civil Rights, Seattle Office, (206) 607-1639, <?php echo Helpers::obfuscateEmailLink ("timothy.sell@ed.gov"); ?><br />
            
			<h3>Title IX Funding and Booster Club Resources</h3>
			<div style="margin-left: 40px; line-height: 1.25em;">
                &raquo; <a href="<?php echo asset('docs/osaainfo/Booster Clubs and Title IX Article 1.pdf'); ?>" target="_blank">Tough Times and Tough Decisions</a><br />
                &raquo; <a href="<?php echo asset('docs/osaainfo/Booster Clubs and Title IX Article 2.pdf'); ?>" target="_blank">Booster Clubs and Facilities: How Equity Impacts Both</a><br />
				&raquo; <a href="<?php echo asset('docs/osaainfo/Booster Clubs and Title IX Article 3.pdf'); ?>" target="_blank">Oversight of Booster Clubs Essential for Gender Equity</a><br /> 
			</div>
			
			<h3>OSAA/ODE Title IX Self-Evaluation Toolkit for Athletic Programs (Fillable Forms)</h3>
            <div style="margin-left: 40px; line-height: 1.25em;">                
                &raquo; <a href="<?php echo asset('docs/osaainfo/Student Interest Survey2.pdf'); ?>" target="_blank">Student Athletic Interest Survey</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset('docs/osaainfo/Title IX TEAM Worksheet2.pdf'); ?>" target="_blank">Team Worksheet </a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset('docs/osaainfo/Title IX BUILDING Worksheet2.pdf'); ?>" target="_blank">Building Worksheet</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset('docs/osaainfo/Title IX DISTRICT Worksheet2.pdf'); ?>" target="_blank">District Worksheet</a><br />
            </div>
			
            <h3>OSAA/ODE Title IX Self-Evaluation Toolkit for Athletic Programs (PDF Forms)</h3>
            <div style="margin-left: 40px; line-height: 1.25em;">                
                &raquo; <a href="<?php echo asset('docs/osaainfo/Student Interest Survey.pdf'); ?>" target="_blank">Student Athletic Interest Survey</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset('docs/osaainfo/Title IX TEAM Worksheet.pdf'); ?>" target="_blank">Team Worksheet </a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset('docs/osaainfo/Title IX BUILDING Worksheet.pdf'); ?>" target="_blank">Building Worksheet</a>&nbsp;&nbsp;|&nbsp;&nbsp;&raquo; <a href="<?php echo asset('docs/osaainfo/Title IX DISTRICT Worksheet.pdf'); ?>" target="_blank">District Worksheet</a><br />
            </div>

            <h3>Additional Title IX Resources</h3>
            <div style="margin-left: 40px; line-height: 1.25em;">
                &raquo; <a href="<?php echo asset('docs/osaainfo/OSAA Title IX Memo.pdf'); ?>" target="_blank">OSAA Title IX Memo</a><br />
				&raquo; <a href="<?php echo asset('docs/osaainfo/NFHS Title IX Audit Article.pdf'); ?>" target="_blank">NFHS Title IX Audit Article</a><br />
                &raquo; <a href="<?php echo asset('docs/osaainfo/BaseballSoftballFields.pdf'); ?>" target="_blank">Softball and Baseball Facilities</a><br />
				&raquo; <a href="<?php echo asset('docs/osaainfo/NFHSTitleIXMay2018.pdf'); ?>" target="_blank">Nine Ways Title IX Protects High School Students</a><br />  
                &raquo; <a href="http://www.womenssportsfoundation.org/en/home/advocate/title-ix-and-issues/what-is-title-ix/standard-language-of-title-ix" target="_blank">Standard Language of Title IX</a><br />
                &raquo; <a href="<?php echo asset('docs/osaainfo/SuggestionsforImprovingEqualOpportunity.pdf'); ?>" target="_blank">Suggestions for Improving Equal Opportunity</a><br />
                &raquo; <a href="http://nfhs.org/resources/student-services-inclusion/gender-equity/" target="_blank">NFHS Gender Equity Resources</a><br />               
                &raquo; <a href="<?php echo asset('docs/osaainfo/TitleIXThreePartTestWebinarSept2015OSAAODE.mp4'); ?>" target="_blank">Title IX Webinar on the Three-Part Test for Participation, Presented by OSAA and ODE - September 24, 2015</a><br />
                &raquo; <a href="<?php echo asset('docs/osaainfo/TitleIXWebinarJan1316LaundryList1.wmv'); ?>" target="_blank">Title IX Webinar on the Laundry List Part 1, Presented by OSAA and ODE - January 13, 2016</a><br />
                &raquo; <a href="<?php echo asset('docs/osaainfo/TitleIXWebinar02-10-2016.wmv'); ?>" target="_blank">Title IX Webinar on the Laundry List Part 2 and Athletic Funding, Presented by OSAA and ODE - February 10, 2016</a><br />
                &raquo; <a href="<?php echo asset('docs/osaainfo/TitleIXWebinar-Fundraising&BoosterClubs-10-10-2018.mp4'); ?>" target="_blank">Title IX Webinar on Fundrasing &amp; Booster Clubs, Presented by OSAA and ODE - October 10, 2018</a><br />
            </div>
       
            <br />

        </div>  


        <?php /*  Admin Workshop  */ ?>
        <div id="workshop">
            
            <div class="ui-corner-all" style="float: right; width: 300px; margin: 1em 0 1em 1.5em; padding: 0 1em 0.5em 1em; border: 1px solid #dedede; font-size: 10pt;">
                <h3>Who Should Attend?</h3>
                Workshops are ideal for:
                <ul>
                    <li>Athletic Directors</li>
                    <li>Assistant Athletic Directors</li>
                    <li>Administrative Assistants/Secretaries</li>
                </ul>            
                <br />

                <h3>2018-19 School Year Workshops</h3>            

                <?php if (is_null($info['workshop_form'])): ?>
                    <b>TBD</b>
                <?php else: ?>
                    <?php foreach ($info['workshop_form']->data->dates as $date_info): ?>
                        <b><?php echo date('F j, Y', strtotime($date_info->date)); ?>:</b>
                        <ul>
                            <?php foreach ($date_info->locations as $location_info): ?>
                                <?php if (!$location_info->is_webcast): ?>
                                    <li><?php echo $location_info->name; ?>, <?php echo $location_info->city; ?></li>
                                <?php endif; ?>
                            <?php endforeach; ?>
                        </ul>
                        <br />
                    <?php endforeach; ?>
                <?php endif; ?>

            </div>

            <h1>Annual Administrator Workshops</h1>        

            The OSAA hosts annual Administrator Workshops to familiarize representatives from the member schools with the services, policies, procedures, rules, and interpretations of the Association.

            <br />


            <br />
            <div class="small gray">The OSAA is also hosting an optional <a href="<?php echo url('/administrators'); ?>">Administrative Secretaries Workshop - May 30, 2018</a> for AD Secretaries and Administrative Specialists.</div>

            <br />

            <h2>Mandatory Attendance</h2>
            Each member school shall ensure that at least one representative participates in one of the annual Administrator Workshops presented by OSAA staff.  Roll shall be taken at the Workshops to confirm compliance with this policy.

            <br /><br />

            Should it be determined that a member school failed to have a representative at any of the Administrator Workshops, that school shall have an administrator view a recorded version of the workshop within five days, receive a $1,000 fine, appear before the Executive Board at their next meeting, and be placed on probation during the Association Year of non-attendance.  The Executive Board shall consider the probationary status of the school when assigning penalties for any violations of OSAA Regulations by the school that might occur during the period of probation.  (<a href="<?php echo url('/governance/handbooks/osaa#_Toc456100325'); ?>" target="_blank">Executive Board policy</a>)


            <br /><br />
            
            <h2>Information</h2>
            <div style="margin-left: 40px; line-height: 1.25em;">
                
                &raquo; <a href="<?php echo asset('docs/broadcast/18-19AdministratorWorkshopMemo.pdf'); ?>" target="_blank">2018-19 OSAA Administrator Workshops Memo</a>
                <?php /*  &raquo; <a href="<?php echo asset ('docs/osaainfo/16AdministratorWorkshop.pptx'); ?>" target="_blank">OSAA 2016 Administrator Workshop (Powerpoint)</a><br />  */ ?>
            </div>

            <br />

            <?php if (!is_null($info['workshop_form'])): ?>

                <h2>Registration Form</h2>

                <a name="registration-form" id="registration-form"></a>
                <div class="ui-corner-all" style="border: 1px solid #dedede; padding: 0.5em 1em 1em 1em; font-size: 10pt; position: relative;">
                    
                    <?php if (Auth::check() and Auth::user()->isOsaaUser()): ?>
                        <div style="float: right; position: absolute; top: -27px; left: 300px;">
                            <a href="<?php echo url('/forms/annual-workshop/' . $info['workshop_form']->id . '/download'); ?>" target="_blank" class="button" style="font-size: 8pt;">Download Registration Data</a>
                        </div>

                    <?php endif; ?>

                    <?php if (strtotime($info['workshop_form']->data->hide_at) > time()): ?>


                        <?php echo Form::open(array('url'    => url('/forms/annual-workshop/register'),
                                            'method' => 'POST',
                                            'class'  => 'workshop_registration')); ?>

                            <?php /*  Hidden form fields  */ ?>
                            <?php echo Form::hidden('redirect', url('/administrators/workshop') . '?focus=registration-form'); ?>
                            <?php echo Form::hidden('seasonal_school_form_id', $info['workshop_form']->id); ?>

                            <?php /*  Instructions  */ ?>
                            Please use the following registration form to indicate which school you are representing and which session you plan on attending.  Required fields are noted with a red asterisk, <span class="required">*</span>&nbsp;.  For questions or assistance, please contact <?php echo $info['workshop_form']->staff->first_name; ?> <?php echo $info['workshop_form']->staff->last_name; ?> at <?php echo Helpers::obfuscateEmailLink($info['workshop_form']->staff->email); ?> or (503) 682-6722 x<?php echo $info['workshop_form']->staff->ext; ?>.

                            <br /><br />

                            <?php /*  Errors  */ ?>
                            <?php if (Session::has('errors')): ?>                
                                <div class="error ui-state-error" style="font-weight: bold; padding: 1em;">
                                    <span class="ui-icon ui-icon-alert box_icon"></span>
                                    <?php foreach ($errors->all() as $error): ?>
                                        <?php echo $error; ?>
                                    <?php endforeach; ?>
                                </div>

                                <br /><br />
                            <?php endif; ?>   

                            <?php /*  School  */ ?>
                            <?php echo Form::label('school', 'School'); ?>
                            <?php echo Form::select('school', $info['options']['schools'], null, array('data-required' => true)); ?>
                            <span class="gray note" style="margin-left: 40px;">Select which full member school you are representing.</span>

                            <br /><br />

                            <?php /*  Other school  */ ?>
                            <div class="other_school">

                                <?php echo Form::label('other_school', 'Name&nbsp;', array('style' => 'text-align: right;')); ?>
                                <?php echo Form::text('other_school', null, array('style' => 'width: 200px;', 'data-required' => true)); ?>
                                <span class="gray note" style="margin-left: 40px;">Please provide the name of your school since you selected "Other/Not Listed" above.</span>

                                <br /><br />

                            </div>

                            <?php /*  Number attending  */ ?>
                            <?php echo Form::label('number', 'Attendees'); ?>
                            <?php echo Form::select('number', $info['options']['number_attendees'], null, array('data-required' => true, 'style' => 'width: 50px;')); ?>
                            <span class="gray note" style="margin-left: 40px;">Select how many people from your school will be attending the workshop.</span>
                            
                            <br /><br />

                            <?php /*  Attendees names and roles  */ ?>
                            <?php for ($i = 1; $i <= 3; $i++): ?>
                                
                                <div class="attendee" data-index="<?php echo $i; ?>" style="<?php /*  display: none;  */ ?>">

                                    <?php
                                        $attributes = array();
                                        if ($i == 1)
                                        {
                                            $attributes['data-required'] = 'true';
                                        }
                                    ?>

                                    <b>Attendee #<?php echo $i; ?>:</b><br />
                                    <?php echo Form::label('attendees[' . $i . '][name]', 'Name&nbsp;', array('style' => 'text-align: right;')); ?>
                                    <?php echo Form::text('attendees[' . $i . '][name]', null, array_merge($attributes, array('style' => 'width: 150px;'))); ?>

                                    <?php echo Form::label('attendees[' . $i . '][email]', 'Email&nbsp;', array('style' => 'text-align: right; width: 75px;')); ?>
                                    <?php echo Form::text('attendees[' . $i . '][email]', null, array_merge($attributes, array('style' => 'width: 200px;'))); ?>

                                    <?php echo Form::label('attendees[' . $i . '][role]', 'Role&nbsp;', array('style' => 'text-align: right; width: 75px;')); ?>
                                    <?php echo Form::select('attendees[' . $i . '][role]', $info['options']['roles'], 'Athletic Director', array_merge($attributes, array('style' => 'width: 225px;'))); ?>

                                    <br /><br />
                                
                                </div>

                            <?php endfor; ?>

                            <b>Select which session you'll attend:</b> <span class="required">*</span><br />
                            <div class="dates">                            

                                <?php foreach ($info['workshop_form']->data->dates as $date_index => $date_option): ?>

                                    <div class="date_option">
                                        <div class="date_title"><?php echo date('l, F j, Y', strtotime($date_option->date)); ?></div>
                                        <div class="session_title header_selected"></div>
                                        <div class="options_title">
                                            <?php echo ucfirst(Helpers::getNumberAsText(count($date_option->locations))); ?>
                                                Session
                                            <?php if (count($date_option->locations) > 1): ?>
                                                Options
                                            <?php else: ?>
                                                Option
                                            <?php endif; ?>
                                        </div>
                                    </div>
                                    <div class="date_option_info" data-date="<?php echo $date_option->date; ?>">                                    
                                        <?php foreach ($date_option->locations as $session_index => $location): ?>
                                            <table data-session-name="<?php echo $location->name; ?>, <?php echo $location->city; ?>">
                                                <tr>
                                                    <td colspan="2" style="font-weight: bold; font-size: 10pt;">
                                                        <?php if (!Helpers::strIsEmpty($location->map_url)): ?>
                                                            <a href="<?php echo $location->map_url; ?>" target="_blank"><?php echo $location->name; ?>, <?php echo $location->city; ?></a>
                                                        <?php else: ?>
                                                            <?php echo $location->name; ?>, <?php echo $location->city; ?>
                                                        <?php endif; ?>
                                                    </td>
                                                    <td rowspan="3" style="vertical-align: middle; width: 275px;">
                                                        <label style="font-weight: normal; width: auto;" for="session_<?php echo $date_index; ?>_<?php echo $session_index; ?>">
                                                            <input type="radio" name="session" id="session_<?php echo $date_index; ?>_<?php echo $session_index; ?>" value="<?php echo $date_option->date; ?>|<?php echo $session_index; ?>" style="vertical-align: middle;" data-session-name="<?php echo $location->name; ?>, <?php echo $location->city; ?>" data-session-date="<?php echo date('l, F j, Y', strtotime($date_option->date)); ?>" data-paired-checkbox="attending_tutorial_<?php echo $date_index; ?>_<?php echo $session_index; ?>" />
                                                            Choose this session
                                                        </label>

                                                        <?php if ($location->offer_tutorial): ?>

                                                            <label style="font-weight: normal; width: auto;" for="attending_tutorial_<?php echo $date_index; ?>_<?php echo $session_index; ?>">
                                                                <input type="checkbox" name="attending_tutorial" id="attending_tutorial_<?php echo $date_index; ?>_<?php echo $session_index; ?>" value="1" style="vertical-align: middle;" />
                                                                Attend Optional Tutorial
                                                            </label>
                                                            <br />
                                                            <div class="gray note small" style="line-height: 1.15em;">
                                                                Check this box if you also plan to attend the optional Eligibility/Transfer Tutorial.
                                                            </div>
                                                        
                                                        <?php endif; ?>
                                                    </td>
                                                </tr>
                                                <?php foreach ($location->schedule as $schedule): ?>
                                                  <tr>
                                                      <td style="width: 140px;">                                                    
                                                        <?php echo Helpers::formatDateTime('%SCHEDULE%', strtotime($schedule->start)); ?> - <?php echo Helpers::formatDateTime('%SCHEDULE%', strtotime($schedule->end)); ?>
                                                      </td>
                                                      <td style="width: 475px;">
                                                        <?php echo $schedule->topic; ?> 
                                                        <?php if (!Helpers::strIsEmpty($schedule->note)): ?>
                                                            <span class="gray note">(<?php echo $schedule->note; ?>)</span>
                                                        <?php endif; ?>
                                                      </td>                                        
                                                  </tr>                                              
                                                <?php endforeach; ?>
                                                <?php if (count($location->notes) > 0): ?>
                                                    <tr>
                                                        <td colspan="3" style="line-height: 1.15em; font-size: 8pt;" class="gray">
                                                            <ul style="padding-left: 12px;">
                                                                <?php foreach ($location->notes as $note): ?>
                                                                    <li><?php echo $note; ?></li>
                                                                <?php endforeach; ?>
                                                            </ul>
                                                        </td>
                                                    </tr>
                                                <?php endif; ?>
                                            </table>
                                            <br /><br />
                                        <?php endforeach; ?>
                                    </div>

                                <?php endforeach; ?>

                            </div>

                            <br />                        

                            <?php /*  CAPTCHA, if not logged in  */ ?>
                            <?php if (!Auth::check() or true): ?>                            
                                <div class="g-recaptcha" data-sitekey="6Ld4QAsTAAAAAH3ogjvzOizw9dLVhVnIoreuLUZi" style="float: left; margin-right: 40px;"></div>
                            <?php endif; ?>

                            <?php /*  Submit button section  */ ?>
                            <div class="submit_button_section">                            
                                <b>Please ensure the information you entered is correct before submitting your registration.</b><br />
                                An email will be automatically sent to the first attendee's email address with registration confirmation.  

                                <?php echo Form::submit('Register', array('style' => '')); ?>

                            </div>

                            <br class="clear" />

                        <?php echo Form::close(); ?>
                    
                    <?php else: ?>

                        <?php /*  Instructions  */ ?>
                        <br />

                        The online form is closed because workshops start soon.  If you need to register or change your previous choices, please contact <?php echo $info['workshop_form']->staff->first_name; ?> <?php echo $info['workshop_form']->staff->last_name; ?> at <?php echo Helpers::obfuscateEmailLink($info['workshop_form']->staff->email); ?> or (503) 682-6722 x<?php echo $info['workshop_form']->staff->ext; ?>.

                        <br /><br />

                    <?php endif; ?>

                </div>

            <?php endif; ?>            

        </div>  

    </div>
	
<?php $__env->stopSection(); ?>