<?php $__env->startSection('page_title'); ?>
    OSAA - Awards
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_sub_title'); ?>    
   OSAA Awards
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    @parent
  
    <style type="text/css">
        h3 {
            color: #990000 !important;
        }

        .potg_column dl dt {
            float: none !important; 
            width: 50% !important; 
            font-weight: bold; 
            border-bottom: 1px solid #7d7b7d;
        }

        .potg_column dl dd {
            margin: 0.5em 0 1em 2em;
        }

        table.athlete-of-the-week  {            
            border-collapse: collapse;
            width: 100%;
        }

        .athlete-of-the-week td, 
        .athlete-of-the-week th {
            border: 1px solid #dddddd;
            text-align: left;
            padding: 8px;
        }

        .athlete-of-the-week tr:nth-child(even) {
            background-color: #dddddd;
        }

        .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;
        }

        .ui-tabs-vertical { width: 100%; }
        .ui-tabs-vertical .ui-tabs-nav { padding: .2em .1em .2em .2em; float: left; width: 14em;}
        .ui-tabs-vertical .ui-tabs-nav li {clear: left; width: 100%; border-bottom-width: 1px !important; border-right-width: 0 !important; margin: 0 -1px .2em 0;}
        .ui-tabs-vertical .ui-tabs-nav li a { display:block; width: 144px; white-space: pre-wrap;}
        .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active { padding-bottom: 0; padding-right: .1em; border-right-width: 1px; margin-bottom: 0.2em;}
        .ui-tabs-vertical .ui-tabs-panel { padding: 0 0.5em 1em 0.5em; float: right; width: 80%;}

        
    </style>

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

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

    if(!window.console)
    {
        window.console = { log: $.noop, group: $.noop, groupEnd: $.noop };            
    }

    // 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();
    
    $('a[data-jump-tab]').click(function(event)
    {
        event.preventDefault();

        var link = $(this);

        var target_tab_id = link.attr('data-jump-tab');
        activateTab(target_tab_id, '#content');
    });

    $('.tabs').tabs({
        beforeActivate : function (event, ui)
        {
            if (ui.newTab.is('[data-escape]'))
            {
                event.preventDefault();
                window.location = ui.newTab.attr('data-escape');                
            }   
        }
    });
    
    $('.vertical_tabs')
        .tabs({
            beforeActivate : function (event, ui)
            {
                if (ui.newTab.is('[data-escape]'))
                {
                    event.preventDefault();
                    window.location = ui.newTab.attr('data-escape');                
                }   
            }
        })
        .addClass("ui-tabs-vertical ui-helper-clearfix");
    
    $('.vertical_tabs li, .vertical_tabs li a')
        .removeClass("ui-corner-top")
        .removeClass("ui-corner-right")
        .addClass("ui-corner-left");    

    
    /*
     * 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)
        {
            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 = false;
    
    if (anchor)
    {
        activateTab(anchor, false);
        focus = '#content';
    }    

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

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

    if (focus)
    {
        focusOnElement($(focus));  
    }


    $('.select_list').change(function ()
    {
        /* Get the root directory */
        var root = $(this).attr('data-root');

        /* Get the selected value */
        var sel = $(this).find(':selected').val();

        if (sel.match('http'))
        {
            var goto = sel;
        }
        else
        {
            var goto = root + '/' + sel;
        }

        //window.location = goto;
        window.open(goto, '_blank');
    });

    // Player of the game scroll from link list
    $('#player_sport_jump a').click(function(event)
    {
        event.preventDefault();

        var link = $(this);
        var jump = link.attr('href');

        var element = $(jump);
        var top = element.offset().top - 45;

        $('html, body').animate({scrollTop: top}, 400);
    });

    /* Update school address */
    $('#scholar_school_select').on('change', function ()
    {
        var select = $(this);
        var option = $(':selected', select);
        var school = option.attr('data-school-name');
        var line_1 = option.attr('data-address-line_1');
        var line_2 = option.attr('data-address-line_2');
        var city = option.attr('data-address-city');
        var state = option.attr('data-address-state');
        var zip = option.attr('data-address-zip');

        var address = school;
        address += '<br />ATTN: <?php echo $info['scholar_form']['addressee']; ?>';
        address += '<br />' + line_1;
        if (line_2 != '')
        {
            address = address + '<br />' + line_2;
        }
        address = address + '<br />' + city + ', ' + state + ' ' + zip;

        $('#address').html(address);

    }).change();

    $('#scholar_submit')
        .button()
        .css({'margin-left' : '50px',
              'font-size' : '9pt',
              'position' : 'relative',
              'top' : '-1.5em'});

    $('[data-format="integer"]').bind('input', function()
    {
        $(this).val($(this).val().replace(/[^0-9]/gi, ''));
    }); 

<?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 vertical_tabs">
        
        <ul class="tabs_list" style="padding-left: 5px; font-size: 9pt; height: 640px;">            
            <?php if (Auth::check() and Auth::user()->isOsaaUser()): ?>
                <li><a href="#all-state" data-tab-order="0">Academic All-State</a></li>            
                <li><a href="#athlete-of-the-week" data-tab-order="1">Athlete of the Week</a></li>
                <li><a href="#team-of-the-month" data-tab-order="2">Team of the Month</a></li>
                <li><a href="#player-of-the-game" data-tab-order="3">Player of the Game / Athlete of the Meet</a></li>            
                <li><a href="#oregonian-cup" data-tab-order="4">Oregonian Cup</a></li>
                <li><a href="#scholar" data-tab-order="5">Scholar</a></li>
                <li><a href="#sportsmanship" data-tab-order="6">Sportsmanship</a></li>
                <li><a href="#distinguished-service" data-tab-order="7">Distinguished Service</a></li>
                <li><a href="#nfhs-awards" data-tab-order="8">NFHS Awards</a></li>
            <?php else: ?>
                <li><a href="#all-state" data-tab-order="0">Academic All-State</a></li>                            
                <li><a href="#athlete-of-the-week" data-tab-order="1">Athlete of the Week</a></li>
                <li><a href="#player-of-the-game" data-tab-order="2">Player of the Game / Athlete of the Meet</a></li>            
                <li><a href="#oregonian-cup" data-tab-order="3">Oregonian Cup</a></li>
                <li><a href="#scholar" data-tab-order="4">Scholar</a></li>
                <li><a href="#sportsmanship" data-tab-order="5">Sportsmanship</a></li>
                <li><a href="#distinguished-service" data-tab-order="6">Distinguished Service</a></li>
                <li><a href="#nfhs-awards" data-tab-order="7">NFHS Awards</a></li>
            <?php endif; ?>
        </ul>
        
        <?php /*  Academic All-State Tab  */ ?>
        <div id="all-state">            

            <a href="http://www.onpointcu.com/" target="_blank" style="float: left; margin: 1em 2em 1em 0;">
                <img src="<?php echo asset('images/ads/sponsors/OnPoint_150x48.png'); ?>" alt="" title="" style="width: 150px; margin: 9px 20px 20px 0;" />
            </a> 
            <h1 style="line-height: 1.25em;">OnPoint Community Credit Union<br />Academic All-State</h1>
            
            <br class="clear" />

            <div class="columns">

                <div class="half">                                        
                    
                    <h4>About This Award</h4>
                    <p>    
                        The <a href="http://www.onpointcu.com/" target="_blank">OnPoint Community Credit Union</a> Academic All-State Program recognizes outstanding achievement in the classroom. 
    					The boys and girls team in each OSAA-sanctioned activity with the highest team grade point average (G.P.A.) earns the Academic All-State Award. Each member of a winning team 
    					receives a much-coveted, commemorative magnent and a certificate. The school receives a plaque in honor of its team. Members of top ten schools in each activity at each classification are 
    					also recognized.
    				</p>
                        
					Teams that earn a 3.0 GPA or higher will receive 25 points for their school in The Oregonian Cup standings. A list of all teams with a 3.0 GPA or higher will also be posted to the OSAA website.
                    
                    <br class="clear" /> 

		<br>

                    <h4>Previous Winners</h4>
                    
                    <a href="<?php echo asset ('docs/awards/allstate/DFOhistory.pdf'); ?>">Overall Winners by Activity for 1997-2007 (PDF)</a>

                    <br /><br />

                    <select name="academic_allstate_past_winners" class="select_list" data-root="<?php echo asset($info['academic_allstate']['archive_path']); ?>">
                        <option value="">Select Year</option>
                        <?php if (count($info['academic_allstate']['records']) > 0): ?>
                            <?php foreach ($info['academic_allstate']['records'] as $value => $text): ?>
                                <option value="<?php echo $value; ?>"><?php echo $text; ?></option>
                            <?php endforeach; ?>
                        <?php endif; ?>
                    </select>

                    <br /><br />

                    <div class="small gray note">
                        Select a school year from the drop-down list above to view a past year's Academic All-State results.
                    </div>


                    <br /><br />

                    
                    
                </div>

                <div class="half" style="margin-right: 0; padding-right: 0; width: 50%;">
                    
                    <?php                        
                        $seasons_to_show = array('S' => 'Spring', 'W' => 'Winter', 'F' => 'Fall');

                        $activities = array('F' => array('FBL', 'VBL', 'BSC', 'GSC', 'BXC', 'GXC'),
                                            'W' => array('BBX', 'GBX', 'BSW', 'GSW', 'WRE', 'DNC', 'CHE'),
                                            'S' => array('BBL', 'SBL', 'BTF', 'GTF', 'BTN', 'GTN', 'BGF', 'GGF', 'BND', 'ORC', 'CHO', 'SOL', 'SPE'));
                    ?>

                    <?php foreach ($seasons_to_show as $season_slug => $season_name): ?>

                        <?php

                            if (!file_exists(public_path() . '/docs/awards/allstate/' . Session::get('year') . '/' . $season_name . 'QualifyingTeams.pdf'))
                            {
                                continue;
                            }
                        ?>

                        <div class="float_right ui-corner-all" style="padding: 0 1em 0.75em 1em; border: 1px solid #dedede; font-size: 10pt; margin-bottom: 1em;">
                        
                            <h3 style="color: #990000;"><?php echo $season_name; ?> <?php echo Session::get('year'); ?>-<?php echo (intval(substr(Session::get('year'), 2, 2)) + 1 ); ?> Awards</h3>

                            <a href="<?php echo asset('/docs/awards/allstate/' . Session::get('year') . '/' . $season_name . 'QualifyingTeams.pdf'); ?>" target="_blank">All 3.0+ Teams</a><br /><br />
                        
                            <b>Top Ten Teams:</b><br />                            
                        
                            <?php foreach ($activities[$season_slug] as $i => $activity): ?>
                                <a href="<?php echo asset('/docs/awards/allstate/' . Session::Get('year') . '/' . $activity . '.pdf'); ?>" target="_blank"><?php echo Helpers::getActivityName($activity); ?></a>

                                <?php if (($i + 1) < count($activities[$season_slug])): ?>
                                    |
                                <?php endif; ?>

                            <?php endforeach; ?>                
                        </div>

                    <?php endforeach; ?>


                    <b>Submitting Nominations</b><br />
                    Every season, each full member school has the option to submit a <i>OnPoint Community Credit Union Academic All-State Nomination Form</i> for each hosted activity.

                    <br /><br />

                    School administrators can access these forms from the "My Account" page under the "Academic All-State" sub-tab.

                    <br /><br />

                    On these forms, you will list the entire varsity team only. You do not include sub-varsity participants.  Do not combine boys and girl teams, each activity has a separate form.

                    <br /><br />

                    Use the most recent, unweighted, transcripted grades included on each student's transcript. Do not use cumulative GPA.  Be sure to include all co-op students and their GPA from his/her cooperating school.

                    <br /><br />

                    If a student's grades were not earned at your high school or cooperating high school during the previous transcripted grading period, please list his/her name and leave the GPA field blank. (For example: first term freshman, home school students, new exchange students, new transfer students.)

                    <br /><br />

                    There must be a minimum of 5 students with a GPA entry in order to submit a nomination form.

                    <br class="clear" />

                </div>                                    

                <br class="clear" />                

            </div>            
        </div>
        <?php /*  End Academic All-State Tab  */ ?>

        

        <?php /*  Athlete of the Week Tab  */ ?>
        <div id="athlete-of-the-week">       

            <a href="http://www.wendys.com/" target="_blank" style="float: left; margin: 1em 2em 1em 0;">
                <img src="<?php echo asset('images/ads/sponsors/OSAA Athlete of the Week.jpg'); ?>" alt="" title="" style="width: 200px; margin: 10px 0px 5px 0;" />
            </a> 
            <h1 style="line-height: 1.25em; display: flex; align-items: center">Wendy's Athlete of the Week</h1>
            

                    <h4>About This Award</h4>
                    <p>    
                    Each week throughout the school year, <a href="http://www.wendys.com/" target="_blank">Wendy's</a> and the OSAA will recognize varsity athletes that exhibited an 
					outstanding performance for the previous week. All qualifying students will be in good academic standing, show leadership qualities and serve as role models in their communities.
    				</p>
                    <p>   
					The Athlete of the Week will be chosen based off of nominations. To nominate an athlete for consideration, please fill out the form below. The weekly deadline is Tuesday before 12:00 PM.
                    </p>
					<p>
					Each winner of the Wendy's Athlete of the Week award will recieve letter of recognition from the OSAA Executive Director, a commemorative OSAA State Athlete of the Week promotional item,
					a gift from Wendy’s, and a certificate. Winners will be announced weekly on the OSAA website and on OSAA social media platforms.
					</p>
                    <br class="clear" /> 
					
					<h4>2018-2019 Athlete of the Week Winners</h4>
					
					
						<table class="player-of-the-week">
						  <tr>
							<th>Week</th>
							<th>Student</th>
							<th>School</th>
							<th>Activity</th>
							<th>Performance</th>
						  </tr>
						  <tr>
							<td>August 23</td>
							<td></td>
							<td></td>
							<td></td>
							<td></td>
						  </tr>
						  <tr>
							<td>September 3</td>
							<td></td>
							<td></td>
							<td></td>
							<td></td>
						  </tr>
						  <tr>
							<td>September 10</td>
							<td></td>
							<td></td>
							<td></td>
							<td></td>
						  </tr>
						</table>

					<br class="clear" />

					<script>(function(t,e,s,n){var o,a,c;t.SMCX=t.SMCX||[],e.getElementById(n)||(o=e.getElementsByTagName(s),a=o[o.length-1],c=e.createElement(s),c.type="text/javascript",c.async=!0,c.id=n,c.src=["https:"===location.protocol?"https://":"http://","widget.surveymonkey.com/collect/website/js/tRaiETqnLgj758hTBazgdyWJ5rAg_2BlWg_2FfJevAllF956rOS0TvhmdCDAaOpJp1y_2B.js"].join(""),a.parentNode.insertBefore(c,a))})(window,document,"script","smcx-sdk");</script><a style="font: 12px Helvetica, sans-serif; color: #999; text-decoration: none;" href=https://www.surveymonkey.com> Create your own user feedback survey </a>
		
							<br>

                    

                    <br class="clear" />

                                                 

                <br class="clear" />                

                        
        
        </div>        
        <?php /*  End athlete of the Week Tab  */ ?>

		<?php if (Auth::check() and Auth::user()->isOsaaUser()): ?>


        <?php /*  Team of the Month Tab  */ ?>
        <div id="team-of-the-month">       
		<a href="http://www.wendys.com/" target="_blank" style="float: left; margin: 1em 2em 1em 0;">
                <img src="<?php echo asset('images/ads/sponsors/LesSchwab_111x50px.png'); ?>" alt="" title="" style="width: 111px; margin: 10px 0px 5px 0;" />
            </a> 
            <h1 style="line-height: 1.25em; display: flex; align-items: center">Les Schwab Tires Team of the Month</h1>
            

                    <h4>About This Award</h4>
                    <p>    
                    Each week throughout the school year, <a href="http://www.wendys.com/" target="_blank">Wendy's</a> and the OSAA will recognize varsity athletes that exhibited an 
					outstanding performance for the previous week. All qualifying students will be in good academic standing, show leadership qualities and serve as role models in their communities.
    				</p>
                    <p>   
					The Athlete of the Week will be chosen based off of nominations. To nominate an athlete for consideration, please fill out the form below. The weekly deadline is Tuesday before 12:00 PM.
                    </p>
					<p>
					Each winner of the Wendy's Athlete of the Week award will recieve letter of recognition from the OSAA Executive Director, a commemorative OSAA State Athlete of the Week promotional item,
					a gift from Wendy’s, and a certificate. Winners will be announced weekly on the OSAA website and on OSAA social media platforms.
					</p>
                    <br class="clear" /> 
					
					<h4>2018-2019 Team of the Month Winners</h4>
					<!DOCTYPE html>
						<html>
						<head>
						<style>
						table {
							font-family: arial, sans-serif;
							border-collapse: collapse;
							width: 100%;
						}

						td, th {
							border: 1px solid black;
							text-align: center;
							padding: 2px;
						}

						tr:nth-child(even) {
							background-color: #dddddd;
						}
						</style>
						</head>
						<body>

						<table>
						  <tr>
							<th>Month</th>
							<th>Classification</th>
							<th>School</th>
							<th>Activity</th>
							<th>Performance Details</th>
						  </tr>
						  <tr><td rowspan="6">September 2018</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">October 2018</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">November 2018</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">December 2018</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">January 2019</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">February 2019</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">March 2019</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">April 2019</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						  <tr>
							<td rowspan="6">May 2019</td>
							<td>6A</td><td></td><td></td><td></td></tr>
							<tr><td>5A</td><td></td><td></td><td></td></tr>
							<tr><td>4A</td><td></td><td></td><td></td></tr>
							<tr><td>3A</td><td></td><td></td><td></td></tr>
							<tr><td>2A</td><td></td><td></td><td></td></tr>
							<tr><td>1A</td><td></td><td></td><td></td></tr>
						  </tr>
						</table>

						</body>
						</html>
					<br class="clear" />
							<br>

                    

                    <br class="clear" />

                                                 

                <br class="clear" />                

                        
        
        </div>


        <?php /*  End team of the Month Tab  */ ?>

        <?php endif; ?>


        
        <?php /*  Oregonian Cup Tab  */ ?>
        <div id="oregonian-cup">
            <h2>The Oregonian Cup</h2>

            <div style="font-size: 14pt; font-style: italic; font-family: cursive;">
                <img src="<?php echo asset('images/logos/oregoniancup2.gif'); ?>" alt="" title="" class="float_left" style="margin-right: 2em;" />
                <br /><br />
                Sponsored by The Oregonian, the Northwest's largest daily circulation newspaper
            </div>

            <br class="clear" />
            
            <?php if (!is_null($info['oregonian_cup']['standings'])): ?>
                
                <h3 style="color: #990000;">
                    <span style="float: right; font-size: 9pt; color: #151515; font-weight: normal;">Updated <?php echo date('m/d/Y', filemtime($info['oregonian_cup']['standings_path'])); ?></span>
                    
                    <?php /*  Final Results for the 2015-16 Oregonian Cup  */ ?>
                    Results for the 2017-18 Oregonian Cup
                    
                </h3>       
          
                <div class="columns" style="font-size: 7.5pt; height: 325px; overflow-y: scroll;">
                    
                    <?php foreach ($info['oregonian_cup']['standings'] as $classification => $entries): ?>
                        
                        <?php
                            $margin_right = (Helpers::strEqual($classification, '1A')) ? '0' : '0.8%';
                        ?>
                        <div style="float: left; width: 16%; margin-right: <?php echo $margin_right; ?>;">
                            
                            <table style="border-collapse: collapse; width: 100%;">
                                <tr>
                                    <td colspan="3" style="text-align: center; font-size: 11pt; border-bottom: 1px solid #005fa9;"><h4><?php echo $classification; ?></h4></td>
                                </tr>

                                <tr>
                                    <td><b>#</b></td>
                                    <td><b>School</b></td>
                                    <td><b>Pts</b></td>
                                </tr>

                                <?php foreach ($entries as $i => $entry): ?>


                                    <tr <?php if ($i % 2 == 0): ?> style="background-color: #efefef;" <?php endif; ?>>
                                        <td style="width: 15px;"><small><?php echo $entry->place; ?></small></td>
                                        <td style="line-height: 1.15em;"><?php echo $entry->school; ?></td>
                                        <td><small><?php echo $entry->points; ?></small></td>
                                    </tr>

                                <?php endforeach; ?> 

                                <tr>
                                    <td colspan="3" style="text-align: center; font-size: 11pt; border-top: 1px solid #005fa9;"><h4><?php echo $classification; ?></h4></td>
                                </tr>

                            </table>

                        </div>
                    <?php endforeach; ?>

                </div>            

                <br class="clear" />

            <?php endif; ?>

            <div class="columns">
        
        
                
                <div class="half">
                    <h3 style="color: #990000;">About This Award</h3>
                    <p>
                        The Oregonian Cup began in 1999 as a way to recognize overall excellence by schools in academics, activities and athletics. The Oregonian began sponsoring the award in February 2002. The award honors a school's students, teachers, coaches and the entire school community.
                    </p>
                    <p>
                        Schools earn points based on their participation and finish in OSAA State Championships and for Top 10 finishes in the OSAA Academic All-State Program.  A sportsmanship component, whereby schools are awarded points each season for having no ejections, is included as well. The points are updated and released at the end of Fall and Winter seasons and totaled at the end of the year. The school earning the highest points in each classification receives a commemorative trophy from The Oregonian and the OSAA.
                    </p>

                    <h3 style="color: #990000;">Oregonian Cup Point System</h3>
                    <p>
                        The Oregonian Cup recognizes overall school excellence in academics, activities, athletics and sportsmanship. The guiding force behind these point breakdowns is that every school that has a team or individual qualify for our state championships deserves point recognition. The amount of points is meant to be equitable across all activities with differences based on the number of teams and/or individuals participating. Teams that win a state championship will earn the same points regardless of the activity.
                    </p>

                    <h3 style="color: #990000;">Academics</h3>
                    <p>
                        Schools receive points for having teams participate in the OSAA Academic All-State program. Schools receive 25 points for a team with a 3.0+ average but not in the Top 10. Schools with teams in the Top 10 in an activity receive points using the scoring breakdown listed above. The overall winner in an activity receives 200 points. Schools with teams that finish atop a classification but not overall receive 175 points. Ties for the overall winner or first place in a classification are awarded the same points. All other ties are split between the places. <b>50% of all academic points earned will be counted toward the final Oregonian Cup standings.</b>
                    </p>
                    
                    <h3 style="color: #990000;">Sportsmanship</h3>
                    <p>
                        A sportsmanship component was added to the calculations in 2001-2002. Schools receive 200 points per season (Fall, Winter, Spring) for having no ejections. 100 points is subtracted from a school's total for each varsity ejection of a player or coach.
                    </p>
                </div>

                <div class="half">
                    <h3 style="color: #990000;">Scoring for Team Sports, Individual Sports, and Activities with Team Standings</h3>
                    
                    <div class="columns" style="font-size:10pt;">
                        <div class="half">
                            <h4>Single Placings</h4>
                            <table>                              
                                <tr>
                                    <td style="width: 120px;">1st Place</td>
                                    <td>200 Points</td>
                                </tr>
                                <tr>
                                    <td>2nd Place</td>
                                    <td>150 Points</td>
                                </tr>
                                <tr>
                                    <td>3rd Place</td>
                                    <td>140 Points</td>
                                </tr>
                                <tr>
                                    <td>4th Place</td>
                                    <td>120 Points</td>
                                </tr>
                                <tr>
                                    <td>5th Place</td>
                                    <td>110 Points</td>
                                </tr>
                                <tr>
                                    <td>6th Place</td>
                                    <td>100 Points</td>
                                </tr>
                                <tr>
                                    <td>7th Place</td>
                                    <td>90 Points</td>
                                </tr>
                                <tr>
                                    <td>8th Place</td>
                                    <td>80 Points</td>
                                </tr>
                                <tr>
                                    <td>9th Place</td>
                                    <td>75 Points</td>
                                </tr>
                                <tr>
                                    <td>10th Place</td>
                                    <td>70 Points</td>
                                </tr>
                                <tr>
                                    <td>11th Place</td>
                                    <td>65 Points</td>
                                </tr>
                                <tr>
                                    <td>12th Place</td>
                                    <td>60 Points</td>
                                </tr>
                            </table>
                                                                            
                        </div>

                        <div class="half">
                            <br />
                            <table>                              
                                <tr>
                                    <td style="width: 120px;">13th Place</td>
                                    <td>50 Points</td>
                                </tr>
                                <tr>
                                    <td>14th Place</td>
                                    <td>45 Points</td>
                                </tr>
                                <tr>
                                    <td>15th Place</td>
                                    <td>40 Points</td>
                                </tr>
                                <tr>
                                    <td>16th Place</td>
                                    <td>35 Points</td>
                                </tr>
                                <tr>
                                    <td>17th+ Place</td>
                                    <td>25 Points</td>
                                </tr>
                            </table>  

                            <br />

                            <h4>Grouped Placings</h4>
                            <table>
                                <tr>
                                    <td style="width: 120px;">3rd-4th Places</td>
                                    <td>130 Points</td>
                                </tr>
                                <tr>
                                    <td>5th-8th Places</td>
                                    <td>95 Points</td>
                                </tr>
                                <tr>
                                    <td>7th-8th Places</td>
                                    <td>85 Points</td>
                                </tr>
                                <tr>
                                    <td>9th-16th Places</td>
                                    <td>55 Points</td>
                                </tr>
                            </table>                          
                        </div>
                    </div>

                    <br class="clear" />

                    <h3 style="color: #990000;">Individuals in Individual Activities</h3>
                    <p>
                        Each individual who qualifies for the state championships in Cross Country, Swimming, Wrestling, Speech, Solo Music, Golf, Tennis, and Track &amp; Field receives an automatic 10 points for his/her school, up to a maximum of 25 points for a school in an activity. Relay teams in Swimming and Track &amp; Field get 10 points total, not 10 per relay member. Individual participants in Golf and Cross Country can earn additional points for a high finish, (30% of what a team would earn for that place in that event.) For example, an individual placing first in a golf championship receives 60 points for his/her school (60 points is 30% of 200 points.)
                    </p>


                    <h3 style="color: #990000;">Leveling the Playing Field</h3>
                    <table style="float: right; margin: 0 0 0.25em 1em; width: 200px; border-collapse: collapse; font-size: 10pt;">
                        <tr>
                            <td></td>
                            <td style="text-align: center; width: 30%;"><b>Fall</b></td>
                            <td style="text-align: center; width: 30%;"><b>Winter</b></td>
                            <td style="text-align: center; width: 30%;"><b>Spring</b></td>
                        </tr>
                        <tr>
                            <td style="text-align: center;"><b>6A</b></td>
                            <td style="text-align: center;">10</td>
                            <td style="text-align: center;">24</td>
                            <td style="text-align: center;">42</td>
                        </tr>
                        <tr style="background-color: #efefef;">
                            <td style="text-align: center;"><b>5A</b></td>
                            <td style="text-align: center;">10</td>
                            <td style="text-align: center;">24</td>
                            <td style="text-align: center;">40</td>
                        </tr>
                        <tr>
                            <td style="text-align: center;"><b>4A</b></td>
                            <td style="text-align: center;">9</td>
                            <td style="text-align: center;">21</td>
                            <td style="text-align: center;">36</td>
                        </tr>
                        <tr style="background-color: #efefef;">
                            <td style="text-align: center;"><b>3A</b></td>
                            <td style="text-align: center;">7</td>
                            <td style="text-align: center;">15</td>
                            <td style="text-align: center;">24</td>
                        </tr>
                        <tr>
                            <td style="text-align: center;"><b>2A</b></td>
                            <td style="text-align: center;">6</td>
                            <td style="text-align: center;">12</td>
                            <td style="text-align: center;">21</td>
                        </tr>
                        <tr style="background-color: #efefef;">
                            <td style="text-align: center;"><b>1A</b></td>
                            <td style="text-align: center;">4</td>
                            <td style="text-align: center;">10</td>
                            <td style="text-align: center;">12</td>
                        </tr>
                    </table>
                    <p>
                        Similar to scoring systems in other states, we don't want the winning school to just be the school that offers the most activities. For this reason we limit the number of events for which a school can earn points each season (Fall, Winter, and Spring). Once a school has reached the maximum number of events in a particular season, we delete the events in which they scored the least amount of points to reach the maximum number. Limits vary by classification as many schools in lower classifications don't offer every activity. For example a 5A school earning points in 12 different activities in the Fall will have its two lowest point totals dropped for that season.  Dropped points from one season can be applied to another season up to the maximum number of activities.
                    </p>
                </div>
            </div>
          
            <br class="clear" />

            <div style="float: left; width: 700px;">
                <h2>Oregonian Cup Past Winners</h2> 
                <ul style="list-style-type: none;">
					<li>2016-17 - Jesuit, Summit, North Bend, St. Mary's School, Kennedy, Crosshill Christian</li>
                    <li>2015-16 - Jesuit, Summit, Scappoose, St. Mary's School, Kennedy, Hosanna Christian</li>
                    <li>2014-15 - Jesuit, Summit, Valley Catholic, Blanchet Catholic, Burns, Adrian</li>
                    <li>2013-14 - South Salem, Summit, North Bend, Valley Catholic, Portland Christian, Triad School</li>
                    <li>2012-13 - Jesuit, West Albany, La Salle Prep, Valley Catholic, Portland Christian, Triad School</li>
                    <li>2011-12 - Jesuit, Summit, Sisters, Valley Catholic, East Linn Christian, Triad School</li>
                    <li>2010-11 - Jesuit, Marist, Philomath, St. Mary's, Riverdale, The Triad School</li>
                    <li>2009-10 - Jesuit, West Albany, Marist, Santiam Christian, St. Mary's, The Triad School</li>
                    <li>2008-09 - Jesuit, Summit, Marist, Santiam Christian, St. Mary's, The Triad School</li>
                    <li>2007-08 - Jesuit, Crescent Valley, Marist, Santiam Christian, St. Mary's, The Triad School</li>
                    <li>2006-07 - Jesuit, Crescent Valley, Marist, Burns, St. Mary's, The Triad School</li>
                    <li>2005-06 - Jesuit, Marist, Santiam Christian, The Triad School</li>
                    <li>2004-05 - Jesuit, Marist, Santiam Christian, Damascus Christian</li>
                    <li>2003-04 - North Medford, Marist, Santiam Christian, Wallowa</li>
                    <li>2002-03 - (tie) Grant/Sheldon, La Grande, Santiam Christian, Damascus Christian</li>
                    <li>2001-02 - Sheldon, Wilsonville, Santiam Christian, Ione</li>
                    <li>2000-01 - (tie) Crescent Valley/Klamath Union, La Grande, Santiam Christian, Ione</li>
                    <li>1999-00 - Jesuit, Marist, Santiam Christian, Ione</li>
                </ul>             
            </div>

            <div style="float: left; margin-left: 20px; width: 260px;">
                <h2>Previous Results</h2>
                <select name="oregonian_cup_past_winners" class="select_list" data-root="<?php echo asset($info['oregonian_cup']['archive_path']); ?>">
                    <option value="">Select Year</option>
                    <?php if (count($info['oregonian_cup']['records']) > 0): ?>
                        <?php foreach ($info['oregonian_cup']['records'] as $value => $text): ?>
                            <option value="<?php echo $value; ?>"><?php echo $text; ?></option>
                        <?php endforeach; ?>
                    <?php endif; ?>
                </select>

                <br /><br />

                <div class="small gray note">
                    Select a school year from the drop-down list above to view a past year's Oregonian Cup results.
                </div>
            </div>

            <br class="clear" />
        </div>
        <?php /*  End Oregonian Cup Tab  */ ?>


        <?php /*  Player of the game tab  */ ?>
        <div id="player-of-the-game">            
            
            <a href="http://www.odscompanies.com/" target="_blank" style="float: left; margin: 1em 2em 1em 0;">
                <img src="<?php echo asset('images/logos/ModaColor.jpg'); ?>" style="width: 150px; margin: 9px 20px 20px 0;" alt="" title="" />                
            </a> 
            <h1 style="line-height: 1.25em; padding-top: 1em;">Moda Health Player of the Game /<br />Athlete of the Meet</h1>
                                  

            <br class="clear" />
			<?php /* 
            <h2>Moda Health Player of the Game / Athlete of the Meet</h2>              

            <h4>2017-18 Recognized Players and Athletes</h4>
            <p>
                The Moda Health Players of the Game and Athletes of the Meet are announced at the conclusion of each state championship event.
            </p>              

            <div class="small" id="player_sport_jump">
                <?php foreach ($info['players_of_the_game']['layout'] as $index => $object): ?>
                    <a href="#<?php echo $object->slug; ?>"><?php echo $object->sport; ?></a>
                    <?php if ($index < (count($info['players_of_the_game']['layout']) - 1)): ?> | <?php endif; ?>                    
                <?php endforeach; ?>
                
            </div>

            <br />
			 */ ?>
			

            <?php foreach ($info['players_of_the_game']['layout'] as $object): ?>

                <?php
                    if (count($object->columns) <= 2)
                    {
                        $column_class = 'half';
                    }
                    else
                    {
                        $column_class = 'third';
                    }
                ?>

                <h3 class="potg_header" name="<?php echo $object->slug; ?>" id="<?php echo $object->slug; ?>"><?php echo $object->title; ?></h3>

                <div class="columns">                    
                    
                    <?php foreach ($object->columns as $divisions): ?>
                        <div class="<?php echo $column_class; ?> potg_column">
                            <dl>
                                <?php foreach ($divisions as $division_name): ?>
                                    <dt><?php echo $division_name; ?></dt>                                    
                                    <dd>
                                        <?php
                                            if (preg_match('/(.*)\ \-\ (Boys|Girls)/', $division_name, $matches))
                                            {
                                                $division = $matches[1];
                                                $activity = $matches[2] . ' ' . $object->sport;                                                
                                            }
                                            else                                            
                                            {
                                                $division = $division_name;
                                                $activity = $object->sport;
                                            }
                                        ?>
                                        
                                        <?php foreach ($info['players_of_the_game']['entries'][$activity] as $index => $entry): ?>
                                            <?php if (Helpers::strEqual($division, $entry->division)): ?>
                                                <?php echo $entry->name; ?>, <?php echo $entry->school; ?><br />
                                            <?php endif; ?>
                                        <?php endforeach; ?> 

                                    </dd>                                
                                <?php endforeach; ?>
                            </dl>
                        </div>

                    <?php endforeach; ?>
                </div>

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

            <?php endforeach; ?>            
         
		 
			
			<h2>2017-18 Moda Heath Scholarship Recipients</h2>
            <div class="columns">
                <div class="half">
                    <img src="<?php echo asset('/images/awards/Hadley.jpg'); ?>" alt="" title="" style="width: 200px;" /><br />
                    <h3>Hadley Brooksby - Oakland HS</h3>
                    <p>
                        This Moda Health Basketball Player of the Game recipient is a multi sport athlete who plays a major role in her school and community.  Besides participating in soccer,
						basketball and track and field, Hadley is part of the Student Council, National Honor Society, FFA and 4-H clubs at Oakland HS.  Hadley also boasts a 4.0 GPA a she enters
						her final year of high school.  Hadley's summer is highlighted by humanitarian trip to Belize.
                    </p>
                </div>

                <div class="half">
                    <img src="<?php echo asset('/images/awards/kellen.jpg'); ?>" alt="" title="" style="width: 200px;" /><br />
                    <h3>Kellen Shelley - Grant Union HS</h3>
                    <p>
                        This multi sport athlete received the Moda Health Player of the Game award during the 2A Basketball State Championship in Pendleton.  Outside of sports and school, Kellen gives his
						time to the FFA where they head up annual can food drives, camp clean-ups and firewood cutting for the elderly.  Kellen is driven by his passion to serve and to provide leadership
						in his school and community.  Randal Hennen of Grant Union HS writes "Kellen would be one to stand and speak up for what is morally and ethically right, even in the face of opposition."
                    </p>
                </div>
            </div>


        </div>
        <?php /*  End Player of the Game Tab  */ ?>        


        <?php /*  Scholar Program Tab  */ ?>
        <div id="scholar">                        

            <h2>OnPoint Community Credit Union Scholar Program</h2>            

            <div class="columns">
                <div class="half">

                    <a href="http://www.onpointcu.com/" target="_blank" style="float: left; margin: 1em 2em 1em 0;">
                        <img src="<?php echo asset('images/OnPoint_107x34.jpg'); ?>" alt="" title="" />
                    </a>
            
                    <h3>About This Award</h3>
            
                    <p>
                        <a href="http://www.onpointcu.com/" target="_blank">OnPoint Community Credit Union</a> sponsors the Scholar Program, recognizing Scholar Athletes and Activity Scholars 
						who are <strong>graduating seniors</strong> at OSAA member schools.
                    </p>
                    <p>
                        The Scholar Program recognizes graduating seniors who have achieved a 3.50 or higher cumulative GPA and earned a varsity letter in an OSAA-sanctioned sport or competed in 
						an OSAA-sanctioned activity.  Each qualifying, graduating senior receives a certificate of achievement from the OSAA and OnPoint Community Credit Union. 
                    </p>
                    <p>
                        A student must meet all of the respective qualifications to receive a certificate for Scholar Athlete or Activity Scholar.  Graduating seniors who earned varsity letters 
						or competed in activities during freshman, sophomore, or junior years, but not during senior year are still eligible for the Scholar Program and can receive a certificate.
                    </p>
		<p>
                        All graduating seniors in the Scholar Program are eligible to apply for one of six college scholarships. Winners will be selected based on success in the classroom, 
						leadership in the community, a letter of recommendation, and an essay on how participating in OSAA activities has either taught them a lesson or help them achieve their goals. 
                    </p>

                </div>

                <div class="half">
                    <h3>Scholar Program Qualifications, Students Must:</h3>                    
                    <div class="columns" style="font-size: 10pt; line-height: 1.05em;">
                        <div class="half">
                            <h4 style="color: #1C43A6;">Scholar Athletes</h4>
                            <ul>
                                <li>Be a graduating senior</li>
                                <li>Have a cumulative GPA of at least 3.50</li>
                                <li>
                                    Have represented an OSAA full member school in at least one of the following OSAA sanctioned sports:
                                    <ul>
                                        <li>Football</li>
                                        <li>Volleyball</li>
                                        <li>Soccer</li>
                                        <li>Cross Country</li>
                                        <li>Basketball</li>
                                        <li>Swimming</li>
                                        <li>Wrestling</li>
                                        <li>Baseball</li>
                                        <li>Softball</li>
                                        <li>Track &amp; Field</li>
                                        <li>Tennis</li>
                                        <li>Golf</li>
                                    </ul>
                                </li>
                                <li>Have received a varsity letter in at least one of the sports listed above at any point during his/her high school career</li>
                            </ul>
                        </div>

                        <div class="half">
                            <h4 style="color: #1C43A6;">Activity Scholars</h4>
                            <ul>
                                <li>Be a graduating senior</li>
                                <li>Have a cumulative GPA of at least 3.50</li>
                                <li>
                                    Have represented an OSAA full member school in at least one of the following OSAA sanctioned activities:
                                    <ul>
                                        <li>Dance/Drill</li>
                                        <li>Cheerleading</li>
                                        <li>Band</li>
                                        <li>Orchestra</li>
                                        <li>Choir</li>
                                        <li>Solo Music</li>
                                        <li>Speech</li>
                                    </ul>
                                </li>
                                <li>Have competed at either a state qualifying event or in the OSAA State Championships in at least one of the activities listed above at any point during his/her high school career</li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>

            <br class="clear" />
                  
            <h3>Frequently Asked Questions</h3>
            <div style="font-size: 10pt; line-height: 1.1em;">
                
                <b>Can a student earn both a Scholar Athlete and an Activity Scholar certificate?</b><br />
                Yes, students are eligible to receive both certificates if he/she meets the respective criteria.
                
                <br /><br />

                <b>Does a student receive multiple Scholar Athlete or Activity Scholar certificates if he/she participated in multiple OSAA sanctioned sports or activities?</b><br />
                No, students can receive up to one (1) Scholar Athlete and/or one (1) Activity Scholar certificate.

                <br /><br />

                <b>Does a student have to participate in an OSAA sanctioned sport or activity in his/her senior year?</b><br />
                No, graduating seniors who earned varsity letters or competed in activities during freshman, sophomore or junior years, but not during his/her senior year, are still eligible and can receive a certificate.

                <br /><br />
                
                <b>Can we get certificates for students who have participated in water polo or lacrosse?</b><br />
                No, the Scholar Program only recognizes students who have participated in OSAA sanctioned sports or activities (see above for a listing).

                <br /><br />

                <b>What is the criteria to receive a varsity letter?</b><br />
                The OSAA does not determine the qualifications for students to earn letters, the determination of who letters or what constitutes a varsity letter is left up to the school.

                <br /><br />
                
                <b>How and when do I request certificates?</b><br />
                Certificates may be ordered beginning <?php echo date('F j', strtotime($info['scholar_form']['form']->open_at)); ?> through <?php echo date('F j', strtotime($info['scholar_form']['form']->close_at)); ?>.  To request certificates, you must be logged into your OSAA website account with administrative privileges and use the order form on this page.  <?php /*  Certificates will not be available until after April 15.  */ ?>
            </div>

            <br />

            <h3>Certificate Order Form</h3>

            <?php if (Session::has('errors')): ?>                
                <div class="ui-state-error" style="padding: 1em 0.5em;">
                    <span class="ui-icon ui-icon-alert" style="display:inline-block; position:relative; top:2px;"></span>
                    <?php foreach ($errors->all() as $error): ?><?php echo $error; ?> <?php endforeach; ?>
                    </div>
                <br />
            <?php endif; ?>


            <?php /*  Form Open  */ ?>
            <?php if (!is_null($info['scholar_form']['form']) and $info['scholar_form']['open'] /*or Helpers::strEqual(Request::getClientIp(), '96.76.109.165')*/): ?>

                <?php /*  Not Logged In  */ ?>
                <?php if (!$info['scholar_form']['logged_in']): ?>

                    <p>
                        You must be logged in to your OSAA website account with administrative access in order to request certificates for the Scholar Program.
                    </p>
                    <p>
                        <a href="<?php echo url('/account/login?redirect=/awards/scholar'); ?>">&raquo; Login</a>
                    </p>

                <?php /*  No Admin Access  */ ?>
                <?php elseif (!$info['scholar_form']['access']): ?>

                    <p>
                        You are logged in, but your account is not linked to any school with administrative access.  Only school administrators (Principal, Athletic Director, AD Secretary, Activities Director, etc.) are allowed to order certificates.
                    </p>
                    <p>
                        <a href="<?php echo url('/account'); ?>">&raquo; My Account</a><br /><a href="<?php echo url('/help'); ?>">&raquo; Help</a>
                    </p>

                <?php /*  Scholar Form  */ ?>
                <?php else: ?>

                    <?php echo Form::open(array('url'   => '/forms/awards/scholar',
                                        'style' => 'font-size: 10pt; line-height: 1.1em;',
                                        'id'    => 'scholar_form')); ?>

                        <h4 style="color: #1C43A6; margin-bottom: 0.25em;">School &amp; Mailing</h4>

                        <div class="columns">
                            <div class="half">
                                <b>Select Your School</b><br />
                                <select id="scholar_school_select" name="scholar_school_select" style="padding-right: 10px;">
                                    <?php foreach ($info['scholar_form']['school_objects'] as $school_object): ?>

                                        <?php if (!is_null($school_object->address)): ?>
                                            <option value="<?php echo $school_object->school->id; ?>"
                                                    data-school-name="<?php echo $school_object->school->name; ?>"
                                                    data-address-line_1="<?php echo $school_object->address->line_1; ?>"
                                                    data-address-line_2="<?php echo $school_object->address->line_2; ?>"
                                                    data-address-city="<?php echo $school_object->address->city; ?>"
                                                    data-address-state="<?php echo $school_object->address->state; ?>"
                                                    data-address-zip="<?php echo $school_object->address->zip; ?>"><?php echo $school_object->school->short_name; ?></option>
                                        <?php else: ?>
                                            <option value="<?php echo $school_object->school->id; ?>"><?php echo $school_object->school->short_name; ?></option>
                                        <?php endif; ?>

                                    <?php endforeach; ?>
                                </select>

                                <div class="small gray note">
                                    Select your school from the drop-down list above and your<br />school's mailing address will be updated on the right.
                                </div>
                            </div>

                            <div class="third">
                                <b>Mailing Address</b><br />
                                <div id="address"></div>              
                            </div>
                        </div>

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

                        <h4 style="color: #1C43A6; margin-bottom: 0.25em;">Number of Certificates</h4>

                        <div class="columns">
                            <div class="third">
                                <b>Scholar Athlete</b>
                                <input type="text" id="scholar_number_athlete" name="scholar_number_athlete" maxlength="3" style="width: 50px; margin-left: 10px;" data-format="integer" />
                                <?php /* <span class="small gray note">Out of Stock</span> */ ?>
                            </div>

                            <div class="third">
                                <b>Activity Scholar</b>
                                <input type="text" id="scholar_number_activity" name="scholar_number_activity" maxlength="3" style="width: 50px; margin-left: 10px;" data-format="integer" />
                            </div>                            
                        </div>

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

                        <b>Notes / Awards Ceremony Date</b><br />
                        <textarea id="notes" name="notes" style="height: 4em; width: 60%;"></textarea>

                        <?php echo Form::submit('Submit', array('id' => 'scholar_submit')); ?>

                        <br class="clear" />

                        <div class="small gray note">
                            When you submit this form, an e-mail will be sent to the OSAA with your order.  You will also be copied on this e-mail for confirmation.  You should expect certificates to be delivered by mail within two weeks of your order.
                        </div>

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


                <?php endif; ?>


            <?php /*  Form Closed  */ ?>
            <?php else: ?>

                This form is not open.  The form opens <?php echo date('g:ia n/j/Y ', strtotime($info['scholar_form']['form']->open_at)); ?> and closes <?php echo date('g:ia n/j/Y ', strtotime($info['scholar_form']['form']->due_at)); ?>.



            <?php endif; ?>



    </div>
        <?php /*  End Scholar Program Tab  */ ?>


        <div id="sportsmanship">            
            
            <div style="float: right; width: 50%; border-left: 1px solid #B0DCFF; padding-left: 22px; height: 585px;">
                
                <h2>We Are #1!</h2>
                
                <img src="<?php echo asset('images/logos/WeAreNumberOne.png'); ?>" alt="" title="" style="width: 400px;" />            

                <h3 style="color:#990000;">OSAA "We Are #1!" Student Section Video Contest</h3>
                <p>
                    &raquo; <a href="<?php echo asset('/docs/awards/sportsmanship/contestflyer.pdf'); ?>" target="_blank">2017-2018 Video Contest Rules</a>
                    <br /><br />
          
          <?php /* YouTube Video Link due to OSAA by <strong>March 16!</strong>
          
          <br /><br />
		   */ ?> 
          
          <h4 style="color:#990000;"> WHO HAS THE <strong> #1 STUDENT SECTION </strong> IN THE STATE? </h4>
          
          <br /><br />
          
                    Congratulations to <strong>Grant High School</strong> for winning the 2017-18 "We Are #1!" Student Section Video Contest.

                    <br /><br />

					Congratulations to <strong>South Albany High School</strong> for winning the 2016-17 "We Are #1!" Student Section Video Contest.

                    <br /><br />
					
					Congratulations to <strong>Henley High School</strong> for winning the winter 2016 "We Are #1!" Student Section Video Contest.

                    <br /><br />
					
					Congratulations to <strong>Summit High School</strong> for winning the fall 2015 "We Are #1!" Student Section Video Contest.

                    <br /><br />
          
					Congratulations to <strong>Klamath Union High School</strong> for winning the winter 2014-15 "We Are #1!" Student Section Video Contest.

                    <br /><br />
                    
                    Congratulations to <strong>Hood River Valley High School</strong> for winning the fall 2014 "We Are #1!" Student Section Video Contest.
                    
                    <br /><br />
                    
                    See top videos on the <a href="https://www.youtube.com/playlist?list=PLFkJkCTa9Oo9Zp0a8S7xrJ8bSxDzO5nYk" target="_blank">OSAA YouTube Channel</a>.                    
                </p>

                <br class="clear" />
            </div>
            <h2>OSAA Sportsmanship Award</h2>

            <img src="<?php echo asset('images/logos/OSAASportsmanship.png'); ?>" alt="" title="" style="width: 200px;" />            
            
            <h3 style="color: #990000;">2015-16 Award Winners</h3>            
            <ul>
                <li><b>Overall Winner</b>: Valley Catholic High School
            </ul>


      <h3 style="color: #990000;">2014-15 Award Winners</h3>
            <ul>
                <li><b>6A Winner</b>: Roseburg High School</li>
                <li><b>5A Winner</b>: Woodburn High School</li>
                <li><b>4A Winner</b>: Scappoose High School</li>
        <li><b>3A Winner</b>: Coquille High School</li>
                <li><b>2A Winner</b>: East Linn Christian</li>
                <li><b>1A Winner</b>: Willamette Valley Christian</li>
            </ul> 
      
      
            <h3 style="color: #990000;">2013-14 Award Winners</h3>
            <ul>
                <li><b>6A/5A Winner</b>: St. Mary's Academy</li>
                <li><b>4A/3A Winner</b>: Harrisburg High School</li>
                <li><b>2A/1A Winner</b>: Joseph High School</li>
            </ul> 

            <h3 style="color: #990000;">2012-13 Award Winners</h3>
            <ul>
                <li><b>6A Winner</b>: Canby High School</li>
                <li><b>5A Winner</b>: Hood River Valley High School</li>
                <li><b>4A Winner</b>: McLoughlin High School</li>
                <li><b>3A Winner</b>: Illinois Valley High School</li>
                <li><b>2A Winner</b>: Western Mennonite High School</li>
                <li><b>1A Winner</b>: Imbler High School</li>
            </ul> 
            &raquo; <a href="<?php echo asset ('docs/awards/sportsmanship/2012-13SportsmanshipAwardSelections.pdf'); ?>">2012-13 League Selections and Classification Winners</a>            
    
	<?php /* 
            <h3 style="color: #990000;">About This Award</h3>
            <p style="font-size: 10pt;">
                The fourth annual Sportsmanship Award is to be awarded in the spring of 2016. All member schools are eligible for this award and are subject to review by the schools in their regular districts.
                <br /><br />
                Each regular district is to submit one member high school as their sportsmanship award winner to the OSAA by 4 p.m., Friday, April 29, 2016. It is up to each regular district to select the school that best exemplifies what sportsmanship means and to represent their district. All regular district winners will be recognized on the OSAA website.
                <br /><br />
                The OSAA Sportsmanship Award will be given to one school in each classification. The overall winner in each classification will receive a Sportsmanship Banner to hang in their school and a $1,000 award from the OSAA.
                <br /><br />
                Regular Districts may base their selection on their own criteria, or on the criteria set-forth in the OSAA Sportsmanship Award Nomination Form, while also referencing the general expectations in the Spectator Conduct policy. Once the district recipient reaches the final round they will fall subject to the following criteria in order to determine the classification winner.
                <br /><br />
                Officials will have the opportunity to provide feedback for the Sportsmanship Award by using the OSAA Sportsmanship Nomination Form. Officials are encouraged to provide feedback in regards to all positive experiences they have officiating.
                <br /><br />
                The Sportsmanship Review Committee (OADA Executive Board, along with a representative from the OSAA staff and the OAOA Executive Board) will review all Regular District winners submitted. It is up to the Committee to determine classification winners. Note that if a member of the Committee has a conflict of interest, they will remove themselves from the selection process for that particular classification.
            </p>
          
            <h3 style="color: #990000;">Primary OSAA Sportsmanship Award Criteria</h3>
            <ul style="font-size: 10pt;">
                <li>Exemplary behavior by the students, coaches, administrators, fans, parents, and community at OSAA events.</li>
                <li>Administrators' ability to enforce the Spectator Conduct policy.</li>
                <li>Number and type of unsportsmanlike ejections. Please note: If a school has a coach who was ejected for unsportsmanlike conduct during the <?php echo Helpers::getCurrentYear(); ?>-<?php echo substr(intval(Helpers::getCurrentYear()) + 1, 2, 2); ?> school year, that school may not be eligible for this award. Multiple athlete ejections from one school during the <?php echo Helpers::getCurrentYear(); ?>-<?php echo substr(intval(Helpers::getCurrentYear()) + 1, 2, 2); ?> school year may eliminate said school from receiving this award as well. This will be to the discretion of the selection committee.</li>
                <li>League feedback.</li>
                <li>Number of nominations submitted for a particular school-within their regular district and outside of their regular district. NOTE: A school may not nominate themselves.</li>                
            </ul>
            
            <p style="font-size: 10pt;">
                The OSAA is excited to honor those schools that exhibit exemplary sportsmanship throughout the year. Help the OSAA honor those commendable schools through the OSAA Sportsmanship Award.
            </p>          
        
            <h3 style="color: #990000;">Nomination Form</h3>
            <p style="font-size: 10pt;">
                Any school may nominate another school at any time during the year for the Sportsmanship Award. Reminder, no school may nominate themselves. Schools are especially encouraged to nominate schools that fall outside of their Regular District. If a parent, fan, or community member would like to fill out a Nomination Form they may do so but must obtain a signature from an administrator of their respective school in order for the form to be validated and used in the review process. Again, a parent, fan, or community member may not nominate their respective school.
                <br /><br />
                To nominate a school for the OSAA Sportsmanship Award, simply complete the following form and submit to Kelly Foster, Associate Director, <?php echo Helpers::obfuscateEmailLink ("kellyf@osaa.org"); ?>.
                <br /><br />
                &raquo; <a href="<?php echo asset ('docs/awards/sportsmanship/NOMINATIONFORM.pdf'); ?>">OSAA Sportsmanship Award Nomination Form</a>
            </p> 
			
				 */ ?>
	
        </div>

        <div id="distinguished-service">            
          <h2>OSAA Distinguished Service Award</h2>

              <h3>About This Award</h3>
        <p>The OSAA Distinguished Service Award is presented to individuals and groups who, through their 
    commitment and devotion to high school students, have made a tremendous impact on interscholastic activities. 
In grateful appreciation of their outstanding service and unselfish devotion to interscholastic activities, the OSAA has proudly 
recognized the following with its Distinguished Service Award.    </p>
    
<p>&nbsp;     
</p>
<table cellspacing="0" cellpadding="0">
  <tr>
    <td width="67"></td>
    <td width="53"></td>
    <td width="247"></td>
    <td width="427"></td>
  </tr>
    <tr>
    <td>2017-18</td>
    <td>&nbsp;</td>
    <td>Dave Sherden</td>
    <td>OSAA Wrestling State Championship Athletic Trainer Coordinator</td>
  </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2014-15</td>
    <td>&nbsp;</td>
    <td>Eugene Mielke</td>
    <td>OSAA Swimming State Championship Official</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Stan Benson</td>
    <td>OSAA Swimming State Championship Official</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
 <tr>
    <td>2012-13</td>
    <td>&nbsp;</td>
    <td>Jan Halverson</td>
    <td>OSAA Cheerleading State Championships Director</td>
  </tr>  
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2011-12</td>
    <td>&nbsp;</td>
    <td>Dave Becker</td>
    <td>Band/Orchestra, Solo Music</td>
  </tr>  
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Charles "Chuck" Bolton</td>
    <td>Band/Orchestra Director</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Hank Mako</td>
    <td>Official</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2010-11</td>
    <td>&nbsp;</td>
    <td>Clark Sanders</td>
    <td>Football Official</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Karen Meats</td>
    <td>Volleyball Official / Commissioner</td>
  </tr>
  <tr>
   <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Mike Wallmark</td>
    <td>OSAA Associate Executive Director</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2009-10</td>
    <td>&nbsp;</td>
    <td>Marv Heater</td>
    <td>Lifetime Achievement</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2007-08</td>
    <td>&nbsp;</td>
    <td>Eagle Crest Resort </td>
    <td>Golf State Championships </td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Dr. Thomas VanVeen </td>
    <td>Medical Aspects of Sport Committee </td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>  
  <tr>
    <td>2006-07</td>
    <td>&nbsp;</td>
    <td>Tualatin Hills Parks &amp; Recreation District</td>
    <td>Tennis</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Osborn Aquatic Center</td>
    <td>Swimming</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2004-05</td>
    <td>&nbsp;</td>
    <td>Jane Berry-Eddings </td>
    <td>Speech Championship Director </td>
  </tr>
  
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Dick Weisbrodt</td>
    <td>Wrestling</td>
  </tr>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2003-04</td>
    <td>&nbsp;</td>
    <td>Harland Yriarte</td>
    <td>Lane Community College AD, Track Coach, Cross Country Coach</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Corvallis High School</td>
    <td>3A Basketball Consolation Game Site, 1999-2003</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Pendleton High School</td>
    <td>2A Basketball Consolation Game Site, 1999-2003</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2002-03</td>
    <td>&nbsp;</td>
    <td>Howard Mayo</td>
    <td>Commissioner, Official - Basketball</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Dairy Farmers of Oregon</td>
    <td>Academic All-State Program</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2001-02</td>
    <td>&nbsp;</td>
    <td>John Hilsenteger</td>
    <td>26 years of service to OSAA</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Delance Duncan</td>
    <td>Wrestling</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>2000-01</td>
    <td>&nbsp;</td>
    <td>Gordon Tjernlund</td>
    <td>State Choir Director</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1999-2000</td>
    <td>&nbsp;</td>
    <td>Joan Arens</td>
    <td>Volleyball Commissioner, Official</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Dr. Thad Stanford</td>
    <td>Sports Medicine</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1998-99</td>
    <td>&nbsp;</td>
    <td>Virginia Yankoskie</td>
    <td>Service to OSAA</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1997-98</td>
    <td>&nbsp;</td>
    <td>David Fluaitt</td>
    <td>Volunteer, Contributor</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Wayne Gessford</td>
    <td>Speech</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Bob Burns</td>
    <td>Contributions, State Department of Education</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Ken Servas</td>
    <td>Contributions</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1996-97</td>
    <td>&nbsp;</td>
    <td>Pete Russo</td>
    <td>4A Wrestling</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Marva Harris</td>
    <td>Speech</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Gordon McKinster</td>
    <td>Basketball Statistician</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Joe Hickey, George Walker &amp; Staff</td>
    <td>Glendoveer Golf Course</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Bob Flood</td>
    <td>Basketball Official, Football Commissioner</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Sony Long</td>
    <td>Tennis Contributor, 1970-96</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1995-96</td>
    <td>&nbsp;</td>
    <td>Rich Brown</td>
    <td>1980-1994</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Leonard Federico</td>
    <td>1980-1995</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>George Milionis</td>
    <td>1980-1995</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Marv Hiebert</td>
    <td>1954-1996</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Coos Bay Lions Club</td>
    <td>Boys Basketball-1955-70, Girls Basketball-1976-78, Wrestling-1990-96</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Baker City Visitors &amp; Convention Bureau</td>
    <td>1974-96</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Pendleton Jaycees</td>
    <td>1975-96</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Salem Noon Optimists</td>
    <td>1979-96</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Eugene Active 20-30</td>
    <td>1971-96</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1994-95</td>
    <td>&nbsp;</td>
    <td>Andi Miller</td>
    <td>Contributor</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Dr. Charles T. Weeks</td>
    <td>2A Basketball Tournament Director</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Juanita Driskill</td>
    <td>1982-1995</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Jim Gibbons</td>
    <td>1984-1994</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Mary Richardson</td>
    <td>Golf</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1993-94</td>
    <td>&nbsp;</td>
    <td>Joan Duckering</td>
    <td>Girls Tennis Tournament Director</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Jim Flynn</td>
    <td>Boys Tennis Tournament Director</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Woody Parker</td>
    <td>Service, 1978-1994</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Dan Duffy</td>
    <td>Volunteer, Contributor</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Boots Duffy</td>
    <td>Softball Commissioner, Volunteer, Contributor</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1992-93</td>
    <td>&nbsp;</td>
    <td>Steve Arena</td>
    <td>KATU, Support of Athletics</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Gary Hammond</td>
    <td>Support of OSAA, Contributor</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Jim Moriarty</td>
    <td>Official, Commissioner, Football</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Dr. Charles Dailey</td>
    <td>Track Starter since 1948</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1991-92</td>
    <td>&nbsp;</td>
    <td>Bill Malflur</td>
    <td>Support of Athletics/OSAA</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Lloyd Drake</td>
    <td>Outstanding Service and Contributions</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Andy Clark</td>
    <td>Official, Commissioner, Soccer</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Leo Marty</td>
    <td>Athletic Trainer, Suppport of Athletics/OSAA</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1990-91</td>
    <td>&nbsp;</td>
    <td>Bill Cook</td>
    <td>Support of Athletics, Contributor</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Jerry Laurens</td>
    <td>Official, Commissioner, Football</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Don Swartz</td>
    <td>3A Basketball</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Larry Gordon</td>
    <td>KHPE Radio, 33 years</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1989-90</td>
    <td>&nbsp;</td>
    <td>Springfield High School</td>
    <td>Wrestling &amp; Rally Host</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Ron Pheister</td>
    <td>PIL Athletics</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Vern Mueller</td>
    <td>Support of Athletics</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Carl Cluff</td>
    <td>Support of Athletics</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1988</td>
    <td>&nbsp;</td>
    <td>Mike Popovich</td>
    <td>Swim/Diving Championships</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1987</td>
    <td>&nbsp;</td>
    <td>Sam Tosti</td>
    <td>Official</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Jim Hudson</td>
    <td>Athletic Trainer - A Wrestling</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1986</td>
    <td>&nbsp;</td>
    <td>Walter Roloff</td>
    <td>Official, Commissioner</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Chuck Hudson</td>
    <td>A Wrestling</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>John Murtaugh</td>
    <td>Basketball Brackets</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1985</td>
    <td>&nbsp;</td>
    <td>John Root</td>
    <td>AA-A Tennis Director</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Gladstone High School</td>
    <td>AA Volleyball</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Bob Brett</td>
    <td>Official, Commissioner</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>U.S. Bank</td>
    <td>Sponsor</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Nendels</td>
    <td>Sponsor</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Chef Francisco</td>
    <td>Sponsor</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1984</td>
    <td>&nbsp;</td>
    <td>Salem Active 20-30 Club</td>
    <td>AAA Girls Basketball</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>The Dalles High School</td>
    <td>A-B Volleyball</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>David Douglas High School</td>
    <td>AAA Wrestling</td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
   <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>1983</td>
    <td>&nbsp;</td>
    <td>Oregon City High School</td>
    <td>AAA Volleyball</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Evadne Woodside</td>
    <td>Gymnastics</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td></td>
    <td>Jeff Wiens</td>
    <td>AD, Reynolds Gymnastics</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Jack Taylor</td>
    <td>Columbia Gymnsastics</td>
  </tr>
</table>

      </div>

      <div id="nfhs-awards">            

          <h2>NFHS Awards</h2>

          <br />
    
          <img src="<?php echo asset('images/icons/nfhs_100px.png'); ?>" class="float_left" style="margin: 0 2em 1em 0;" />

          <p>
              The NFHS endorses two awards programs each year.  Please reference the nomination forms below for additional information.
          </p>
    
          <a href="<?php echo asset ('docs/awards/NFHSSpiritofSport.doc'); ?>" target="_blank">NFHS Spirit of Sport Award</a><br />
          <a href="<?php echo asset ('docs/awards/NFHSHeartofArt.doc'); ?>" target="_blank">NFHS Heart of the Arts Award</a><br />

          <br class="clear" />

          <h2>NFHS Award of Excellence</h2>
          
          
      </div>

                       
    </div>



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