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

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

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

    <style type="text/css">
        
        .page_functions {
            padding-top: 2px !important;
        }

        h3 {
            color: #990000 !important;
        }         

        .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;}
        .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%;}
    
        .media_form label {font-weight: bold;}

    </style>

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

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

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

    $('.button').button();
    $('.button.notext').button({text:false});
    $('.button.close').button({ icons : { primary : 'ui-icon-circle-close'}});
    $('.button.switch').button({ icons : { primary : 'ui-icon-transferthick-e-w'}});
    $('.button.back').button({ icons : { primary : 'ui-icon-arrowthick-1-w'}});
    $('.button.delete').button({ icons : { primary : 'ui-icon-closethick'}});
    $('.button.add').button({ icons : { primary : 'ui-icon-plusthick'}});
    $('.button.save').button({ icons : { primary : 'ui-icon-disk'}});
    $('.button.copy_dmd_to_submitter').button({ icons : { primary : 'ui-icon-copy'}});
    $('.tooltip').tooltip();     
    $('.buttonset').buttonset();    

    $('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");    

    $('[required]').after('<span class="required_marker">*</span>');
                   

    $('.datepicker').datepicker({'dateFormat' : 'mm/dd/yy'});   

    /* Limit input to numbers only */   
    $('.numbers_only').bind('input', function()
    {
        $(this).val($(this).val().replace(/[^0-9]/gi, ''));
    }); 
        

    $('[placeholder]').focus(function()
    {
        var input = $(this);
        if (input.val() == input.attr('placeholder'))
        {
            input.val('');
            input.removeClass('placeholder');
        }
    }).blur(function()
    {
        var input = $(this);
        if (input.val() == '' || input.val() == input.attr('placeholder'))
        {
            input.addClass('placeholder');
            input.val(input.attr('placeholder'));
        }
    }).blur();

    $('[placeholder]').parents('form').submit(function()
    {
        $(this).find('[placeholder]').each(function()
        {
            var input = $(this);
            if (input.val() == input.attr('placeholder'))
            {
                input.val('');
            }
        });
    });    

    /* Display any success messages */
    $('.success_message').delay(5000).fadeOut({'duration' : 2500});
    $('.success_message .ui-icon-close').click(function ()
    {
        $('.success_message').hide();
    });

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

<?php $__env->startSection('page_functions'); ?>
	
    <a href="<?php echo url('/radio-network'); ?>" target="_blank" class="button" style="font-size: 8pt; margin: 6px 10px 0 0;">OSAA Radio Network</a>
    <a href="https://www.nfhsnetwork.com/associations/osaa" target="_blank" class="button" style="font-size: 8pt; margin: 6px 0 0 0;">NFHS Network</a>

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


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

    <?php if (Session::get('success')): ?>
        <div class="success_message"><span class="ui-icon ui-icon-close box_icon"></span><span class="ui-icon ui-icon-check" style="display:inline-block;"></span><?php echo Session::get('success'); ?></div>
    <?php endif; ?>

    <?php if (Session::has('errors')): ?>                
        <div class="ui-state-error" style="padding: 2px 4px;">
            <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 /*  Media Tabs  */ ?>
    <div class="tabs media">
        
        <?php /*  Tab List  */ ?>
        <ul style="padding-left:5px; font-size:9pt;">            
            <li><a href="#schedule" data-tab-order="0">Broadcast Schedule</a></li>
            <li><a href="#broadcasting" data-tab-order="1">Broadcasting</a></li>
            <li data-escape="<?php echo url('/links'); ?>"><a href="#" data-tab-order="2">Media Outlets</a></li>            
            <li><a href="#logos" data-tab-order="3">OSAA Logos</a></li>
            <li><a href="#photography" data-tab-order="4">Photography Guidelines</a></li>
			<li><a href="#social-media" data-tab-order="5">Social Media</a></li>
        </ul>
        
        
        <?php /*  Broadcast Schedule  */ ?>
        <div id="schedule" style="min-height: 590px;">   
        
            <!-- Broadcast Schedule Heading -->
            <h2>OSAA State Championships Broadcast Schedule powered by Pacific Office Automation</h2>                       

            <?php
                // Get a display order of activities
                $activity_order = array('FBL' => 30,
                                        'VBL' => 0,
                                        'BSC' => 10,
                                        'GSC' => 20,
                                        'BBX' => 40,
                                        'GBX' => 50,
                                        'BBL' => 60,
                                        'SBL' => 70);

                // Get the statuses to show
                $statuses = array('SCHD', 'LIVE');

                if (Input::get('all') and Auth::check() and Auth::user()->isOsaaUser())
                {
                     $statuses = array('SCHD', 'LIVE', 'DONE');
                }

                // Get matchups with broadcasters to display
                $matchups = matchup::where(function ($query)
                                     {
                                        $query->whereNotNull('broadcasters');
                                        $query->orWhereNotNull('audio_url');
                                        $query->orWhereNotNull('video_url');
                                     })
                                   ->whereIn('contest', function($query) use($statuses)
                                     {
                                         $query->select('id')
                                               ->from('contests')
                                               ->where('contest_type', '=', 'PO')
                                               ->where('school_year', '=', Session::get('year'))
                                               ->whereIn('event', function($query2) use($statuses)
                                                 {
                                                     $query2->select('id')
                                                            ->from('events')
                                                            ->whereIn('event_status', $statuses);
                                                 });
                                     })
                                   ->get();

                // Load other parameter objects
                $matchups = $matchups->each(function($matchup)
                {
                    $matchup->contest = contest::findOrFail($matchup->contest);
                    $matchup->event = event::findOrFail($matchup->contest->event);

                    $matchup->location = null;
                    if (!is_null($matchup->event->location))
                    {
                        $location = location::findOrFail($matchup->event->location);

                        $matchup->location = $location->name;
                    }
                });                

                // Sort the order of matchups
                $matchups = $matchups->sort(function($a, $b) use($activity_order)
                {
                    // Sort by date/time
                    $a_time = strtotime($a->event->start_at);
                    $b_time = strtotime($b->event->start_at);

                    if ($a_time < $b_time) return -1;
                    if ($a_time > $b_time) return 1;                   

                    return 0;
                });                              

                $activity_order = array();
                $order = 0;
                $matchups->each(function ($matchup) use(&$activity_order, &$order)
                {
                    if (!isset($activity_order[$matchup->contest->activity]))
                    {
                        $activity_order[$matchup->contest->activity] = $order += 10;
                    }
                });

                // Sort the order of matchups
                $matchups = $matchups->sort(function($a, $b) use($activity_order)
                {
                    // Sort by activity
                    $a_act_num = $activity_order[$a->contest->activity];
                    $b_act_num = $activity_order[$b->contest->activity];

                    if ($a_act_num < $b_act_num) return -1;
                    if ($a_act_num > $b_act_num) return 1;

                    // Sort by date/time
                    $a_time = strtotime($a->event->start_at);
                    $b_time = strtotime($b->event->start_at);

                    if ($a_time < $b_time) return -1;
                    if ($a_time > $b_time) return 1;

                    // Sort by classification
                    $a_cls = substr($a->contest->division, 0, 1);
                    $b_cls = substr($b->contest->division, 0, 1);

                    if ($a_cls > $b_cls) return -1;
                    if ($a_cls < $b_cls) return 1;

                    return 0;
                }); 
            ?>

            <table style="border-collapse: collapse; border-color: black; width: 100%; font-size: 10pt;">
            
                <tr style="font-weight: bold; line-height: 2em; border-bottom: 4px solid #1c43a6;">
                    <td style="width: 150px;">Activity</td>
                    <td style="width: 90px;">Date</td>                  
                    <td style="width: 75px;">Time</td>                  
                    <td>Event</td>
                    <td>Broadcasters</td>
                </tr>

                <?php if (count($matchups) > 0): ?>
                
                    <?php                    
                        $i = 0;

                        $activity = $matchups[0]->contest->activity;
                    ?>
                    
                    <?php foreach ($matchups as $matchup): ?>

                        <?php
                            if ($activity != $matchup->contest->activity)
                            {
                                echo "<tr style=\"height: 2em; border-bottom: 2px solid #7d7b7d;\"><td colspan=\"5\"></td></tr>";
                                $activity = $matchup->contest->activity;                        
                            }
                        ?>
                        
                        <tr style="line-height: 2em; <?php if ($i++ % 2 == 1): ?> background-color: #eeeeee; <?php endif; ?>">

                            <td style="line-height: 1.15em;"><?php echo Helpers::getActivityName($matchup->contest->activity) . " - " . $matchup->contest->division; ?></td>
                            
                            <td><?php echo date('D M. j', strtotime($matchup->event->start_at)); ?></td>
                            
                            <td>
                                <?php if (substr($matchup->event->start_at, 11, 8) == '00:00:00'): ?>
                                    TBD
                                <?php else: ?>
                                    <?php echo date('g:i a', strtotime($matchup->event->start_at)); ?>
                                <?php endif; ?>
                            </td>
                            
                            <td style="line-height: 1.25em;">
                                <?php echo $matchup->contest->away_team_name . " @ " . $matchup->contest->home_team_name; ?>

                                <?php if (!Helpers::strIsEmpty($matchup->location)): ?>                                    
                                    (<?php echo $matchup->location; ?>)
                                <?php endif; ?>

                            </td>

                            <td style="line-height: 1.25em;">
                                <?php if (!Helpers::strIsEmpty($matchup->audio_url)): ?>
                                    <a href="<?php echo url('/radio-network'); ?>">OSAA Radio Network</a>
                                    <?php if (!Helpers::strIsEmpty($matchup->video_url) || (!is_null($matchup->broadcasters) and !Helpers::strIsEmpty($matchup->broadcasters))): ?>
                                        <br />
                                    <?php endif; ?>
                                <?php endif; ?>

                                <?php if (!is_null($matchup->video_url)): ?>
                                    <?php /*  <a href="http://www.nfhsnetwork.com/channels/oregon" target="_blank">NFHS Network</a>  */ ?>
                                    <a href="<?php echo $matchup->video_url; ?>" target="_blank">NFHS Network</a>

                                    <small>[Video LIVE]</small>
                                    <?php if (!is_null($matchup->broadcasters) and !Helpers::strIsEmpty($matchup->broadcasters)): ?>
                                        <br />
                                    <?php endif; ?>
                                <?php endif; ?>
                                
                                <?php if (!is_null($matchup->broadcasters) and !Helpers::strIsEmpty($matchup->broadcasters)): ?>
                                    <?php foreach (explode(";", $matchup->broadcasters) as $info): ?>
                                        <?php
                                            $matches = array();
                                            preg_match('/.*{(.*)}.*/i', $info, $matches);                    
                                            $link = (isset($matches[1])) ? $matches[1] : null;

                                            $matches = array();
                                            preg_match('/.*%(.*)%.*/i', $info, $matches);
                                            $note = (isset($matches[1])) ? $matches[1] : null;
                                   
                                            $info = preg_replace('/({.*})|(%.*%)/i', '', $info);                    
                                        ?>
                                    
                                        <?php if (Helpers::strIsEmpty($link)): ?>
                                            <?php echo $info; ?>
                                        <?php else: ?>
                                            <?php if (!Helpers::strContains('http://', $link) and !Helpers::strContains('https://', $link)): ?>
                                                <?php $link = 'http://' . $link; ?>
                                            <?php endif; ?>                            
                                        
                                            <a href="<?php echo $link; ?>" target="_blank"><?php echo $info; ?></a>
                                        <?php endif; ?>
                                                            
                                        <?php if (!Helpers::strIsEmpty($note)): ?>
                                            <small>[<?php echo $note; ?>]</small>
                                        <?php endif; ?>
                                    
                                        <br />
                                    <?php endforeach; ?>
                                <?php endif; ?>
                            </td>


                        </tr>           

                    <?php endforeach; ?>                

                <?php endif; ?>

            </table>

            <br />

            <?php echo $__env->make ('general.media_slice', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>


       
            <?php
            
            /*
            <?php if (Input::get('all') and Auth::check() and Auth::user()->isOsaaUser()): ?>            

            <!-- Broadcast Schedule Table -->
            <table style="border:5px solid grey; text-align:center;" border="1">

                <!-- Header Row -->
                <tr class="districttableheading" style="height:30px; text-align:center;">
                    <td style="width:10%;">DATE</td>
                    <td style="width:10%;">TIME</td>
                    <td style="width:35%;">EVENT</td>
                    <td style="width:45%;">BROADCAST</td>
                </tr>
                
                <!-- Table Rows -->
                 <tr style="height:2em;">
                    <td>Nov. 9</td>
                    <td>6 and 8:30 p.m.</td>
                    <td>Volleyball State Championship Matches</td>
                    <td>
                        <a href="http://www.nfhsnetwork.com/channels/oregon" target="_blank">NFHS Network LIVE Video Streaming</a><br />
                    </td>
                </tr>

                <tr style="height:2em;">
                    <td>Nov. 16</td>
                    <td>See Brackets</td>
                    <td>Soccer State Championship Games</td>
                    <td>
                        <a href="http://www.nfhsnetwork.com/channels/oregon" target="_blank">NFHS Network LIVE Video Streaming</a><br />
                    </td>
                </tr>
                
                <tr style="height:2em;">
                    <td>Nov. 22-23</td>
                    <td>See Brackets</td>
                    <td>5A-1A Football State Semifinal Games</td>
                    <td>
                        <a href="http://www.nfhsnetwork.com/channels/oregon" target="_blank">NFHS Network LIVE Video Streaming</a><br>
                        <a href="http://www.nfhsnetwork.com/channels/osaa-radio-network" target="_blank">OSAA Radio Network</a>
                    </td>
                </tr>
                
                <tr style="height:2em;">
                    <td>Nov. 30</td>
                    <td>See Brackets</td>
                    <td>5A-1A Football State Championship Games</td>
                    <td>
                        <a href="http://www.nfhsnetwork.com/channels/oregon" target="_blank">NFHS Network LIVE Video Streaming</a><br>
                        <a href="http://www.nfhsnetwork.com/channels/osaa-radio-network" target="_blank">OSAA Radio Network</a>
                    </td>
                </tr>
                
                <tr style="height:2em;">
                    <td>Nov. 30</td>
                    <td>TBD</td>
                    <td>6A Football State Semifinal Games</td>
                    <td>
                        <a href="http://www.nfhsnetwork.com/channels/oregon" target="_blank">NFHS Network LIVE Video Streaming</a><br>
                        <a href="http://www.nfhsnetwork.com/channels/osaa-radio-network" target="_blank">OSAA Radio Network</a>
                    </td>
                </tr>
                
                <tr style="height:2em;">
                    <td>Dec. 7</td>
                    <td>1 p.m.</td>
                    <td>6A Football State Championship Game</td>
                    <td>
                        <a href="http://www.nfhsnetwork.com/channels/oregon" target="_blank">NFHS Network LIVE Video Streaming</a><br />
                        <a href="http://www.nfhsnetwork.com/channels/osaa-radio-network" target="_blank">OSAA Radio Network</a>
                    </td>
                </tr>

            </table>
            <!-- End of Broadcast Table -->

            
           
            <!-- Approved Broadcasters Heading -->
            <h2>Media Outlets Registered to Broadcast OSAA Playoff Games (Fall 2013) </h2>    
            
            <br/>
            <!-- Approved Broadcasters Table -->
            <table style="width:998px; border:5px solid grey; text-align:center;" border="1">

                <!-- Header Row -->
                <tr class="districttableheading" style="height:40px; text-align:center;">
                    <td style="width:45%;">OUTLET</td>
                    <td style="width:35%;">SCHOOL(s) COVERING</td>
                    <td style="width:20%;">SPORT</td>    
                </tr>
                
                <!-- Example Table Row 

                <tr style="height:4em;">
                    <td>Outlet</td>
                    <td>Schools</td>
                    <td>Sport</td>
                </tr>
                
                End of Example Table Row -->
                
                <!-- Table Rows -->
                
                    <tr style="height:4em;">
                    <td>1080 The Fan (Portland)<br>
                    <a href="http://player.tritonmedia.com/entercom/KFXXAM">1080thefan.com</a></td>
                    <td>Portland metro area schools</td>
                    <td>Football</td>
                </tr>       

    <tr style="height:4em;">
                    <td>1240 Joe Radio (Corvallis/Albany)</td>
                    <td>Crescent Valley, Philomath<br><a href="http://www.kejoam.com/" target="_blank">kejoam.com</a></td>
                    <td>5A, 4A Football</td>
                </tr>
                                
                    <tr style="height:4em;">
                    <td><a href="http://www.ashlandfootballclub.com/" target="_blank">Ashland Football Club</a></td>
                    <td>Ashland</td>
                    <td>5A Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td><a href="http://www.backroadsbroadcasting.com/" target="_blank">Backroads Broadcasting</a></td>
                    <td>Nyssa</td>
                    <td>3A Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>CBS Sports Radio 1490 The Score (Roseburg)<br>
                    <a href="http://v5.player.abacast.com/v5.1/player/index.php?uid=6420">541radio.com</a><br>
                    Jelli 101 FM (Roseburg)<br>
                    <a href="http://v5.player.abacast.com/v5.1/player/index.php?uid=6419">541radio.com</a></td>
                    <td>Roseburg, Oakland</td>
                    <td>6A, 2A Football</td>
                </tr>
                
                     <tr style="height:4em;">
                    <td>CCTV Channel 22 Comcast (Salem)</td>
                    <td>6A Salem Schools</td>
                    <td>6A Football, Volleyball, Soccer</td>
                </tr>
                
                   <tr style="height:4em;">
                    <td>COTV Channel 11 & 611 HD (Bend)</td>
                    <td>Central Oregon schools</td>
                    <td>Football</td>
                </tr>
                
                 <tr style="height:4em;">
                    <td>CTV Channel 5 (Canby)</td>
                    <td>Canby</td>
                    <td>6A Football</td>
                </tr>
                            
                <tr style="height:4em;">
                     <td><a href="http://www.douglascountysportsonline.com/" target="_blank">DouglasCountySportsOnline.com</a></td>
                    <td>Camas Valley</td>
                    <td>1A Football</td>               
                </tr>
                        
                   <tr style="height:4em;">
                    <td><a href="http://03626e8.netsolhost.com/joomla1/" target="_blank">Full Access Sports</a></td>
                    <td>McKay, McNary, North Salem, West Salem</td>
                    <td>Football</td>
                </tr>
                
                 <tr style="height:4em;">
                    <td><a href="http://www.ihigh.com/school19466/" target="_blank">iHigh.com / Philomath HS</a></td>
                    <td>Philomath</td>
                    <td>4A Football, Volleyball</td>
                    </tr>
                
                <tr style="height:4em;">
                    <td><a href="http://www.nfhsnetwork.com/channels/jesuit-portland-oregon" target="_blank">JC TV / Jesuit High School</a></td>
                    <td>Jesuit</td>
                    <td>6A Football, Soccer</td>
                    </tr>
                    
                     <tr style="height:4em;">
                    <td>KAJC 90.1 FM (Independence)<br>
                    <a href="http://kajcfm.com/">kajcfm.com</a></td></td></td>
                    <td>Central</td>
                    <td>4A Football</td>
                </tr>
                    
                    <tr style="height:4em;">
                    <td>KAJO 1270 AM (Grants Pass)<br>
                    <a href="http://live.kajo.com/" target="_blank">kajo.com</a><br>
                    KLDR 98.3 FM (Grants Pass)</a><br>
                    <a href="http://live.kldr.com/" target="_blank">kldr.com</a>
                    </td>
                    <td>Grants Pass</td>
                    <td>6A Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KBND 1110 AM (Bend)<br>
                    <a href="http://jayreesesports.com/" target="_blank">jayreesesports.com</a></td>
                    <td>Mountain View, Ridgeview</td>
                    <td>Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KBNH 1230 AM (Burns)<br>
                    KORC 92.7 FM (Burns)</td>
                    <td>Crane, Burns</td>
                    <td>Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KBZY 1490 AM (Salem)<br>
    <a href="http://kbzy.com/" target="_blank">kbzy.com</a></td>
                    <td>Sprague, West Salem</td>
                    <td>Football</td>
                </tr>
                    
                     <tr style="height:4em;">
                    <td>KCST 106.9 FM (Florence)</td>
                    <td>Siuslaw</td>
                    <td>4A Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KDOV 91.7 FM (Medford)<br>
    <a href="http://thedove.us/" target="_blank">thedove.us</a></td>
    <td>Cascade Christian</td>
                <td>3A Football</td>
                </tr>
                
                <tr style="height:4em;">
                <td>KFLS 96.5 FM (Klamath Falls)<br>
                <a href="http://klamathradio.com/" target="_blank">klamathradio.com</a></td>               
                   <td>Henley, Lost River</td>
                    <td>4A, 2A Football, Soccer</td>             
                </tr>
                
                <tr style="height:4em;">               
                    <td>KGAL 1580 AM (Lebanon/Albany)<br>
                    <a href="http://kgal.com/" target="_blank">kgal.com</a><br>
                    KSHO 920 AM (Lebanon/Albany)<br>
                    <a href="http://ksho.net/" target="_blank">ksho.net</a></td>
                    <td>West Albany</td>
                    <td>5A Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KHRB 92.3 FM (Harrisburg)</td>
                    <td>Harrisburg</td>
                    <td>Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KJDY 1400 AM / 94.5 FM (John Day)</td>
                    <td>Grant Union, Monument-Dayville, Prairie City</td>
                    <td>2A, 1A Football</td>
                </tr>
                
                 <tr style="height:4em;">
                    <td>KLCR 95.3 FM (Lakeview)</td>
                    <td>Lakeview</td>
                    <td>2A Football, Volleyball</td>
                </tr>
                    
                <tr style="height:4em;">
                    <td>KLYC 1260 AM (McMinnville)<br>
    <a href="http://www.klyc.us/" target="_blank">klyc.us</a></td>
                <td>Yamhill County schools</td>
                    <td>Football</td>
                    </tr>
                    
                    <tr style="height:4em;">
                    <td>KMHS 1420 AM / 91.3 FM (Coos Bay)<br>
                    <a href="http://kmhsradio.cbd9.net/" target="_blank">KMHS Pirate Radio</a></td>
                    <td>Marshfield</td>
                    <td>4A Volleyball</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KOHI 1600 AM (Scappoose/St. Helens)<br><a href="http://am1600kohi.com/" target="_blank">am1600kohi.com</a></td>
                    <td>Scappoose</td>
                    <td>Football</td>
                </tr>
                    
                     <tr style="height:4em;">
                    <td>KOHU 1360 AM (Hermiston)<br>
    <a href="http://gohermiston.com/" target="_blank">gohermiston.com</a></td>
                    <td>Hermiston</td>
                    <td>5A Football</td>
                </tr>
                
                   <tr style="height:4em;">
                    <td>KSRV 1380 AM (Ontario)</a><br>
    <a href="http://www.oldies1380am.com/">oldies1380am.com</a></td>
                    <td>Ontario, Vale</td>
                    <td>Football</td>
                </tr>
                
                  <tr style="height:4em;">
                    <td>KSWB 840 AM (Seaside)</td>
                    <td>Seaside</td>
                    <td>4A Football</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>KUGN NewsTalk 590 (Eugene/Springfield)<br>
                    <a href="http://www.kugn.com/" target="_blank">kugn.com</a><br>
                    KUJZ 95.3 The Score (Eugene/Springfield)<br>
                    <a href="http://www.953thescore.com/" target="_blank">953thescore.com</a><br>
                    KSCR 1320 Info Radio (Eugene/Springfield)<br>
                    <a href="http://www.1320inforadio.com/" target="_blank">1320inforadio.com</a></td>
                    <td>Eugene/Springfield schools</td>
                    <td>Football</td>
                </tr>
                
                     <tr style="height:4em;">
                    <td>KUIK 1360 AM (Portland Westside)<br>
    <a href="http://kuik.com/" target="_blank">kuik.com</a></td>
                <td>Washington County schools</td>
                    <td>Football</td>
                    </tr>
                    
                    <tr style="height:4em;">
                    <td>KYTT 98.7 FM (North Bend/Coos Bay)</a><br>
    <a href="http://www.lighthouseradio.com/" target="_blank">lighthouseradio.com</a></td>
                    <td>North Bend</td>
                    <td>4A Football</td>
                </tr>
                    
                    <tr style="height:4em;">
                    <td>KYYT 102.3 FM (The Dalles)<br>
    <a href="http://gorgecountry.com/" target="_blank">kuik.com</a></td>
                <td>Dufur</td>
                    <td>1A Football</td>
                    </tr>
                    
                    <tr style="height:4em;">
                    <td><a href="http://www.nfhsnetwork.com/channels/lake-oswego-lake-oswego-oregon" target="_blank">Laker Broadcasting</a></td>
                    <td>Lake Oswego</td>
                    <td>6A Football</td>
                </tr> 
                    
                    <tr style="height:4em;">
                    <td><a href="http://portlandsportsbeat.com/" target="_blank">Portland SportsBeat</a></td>
                    <td>Roosevelt</td>
                    <td>4A Football</td>
                                    
                    <tr style="height:4em;">
                    <td><a href="http://www.nfhsnetwork.com/channels/centralcatholic-portland-oregon" target="_blank">RAM TV</a></td>
                    <td>Central Catholic</td>
                    <td>Football, Volleyball Soccer</td>
                </tr>
                             
                <tr style="height:4em;">
                    <td><a href="http://rivalblitz.com/" target="_blank">RivalBlitz.com</a></td>
                    <td>Lost River, Hosanna Christian</td>
                    <td>2A, 1A Football, Volleyball</td>
                    </tr>
                    
                    <tr style="height:4em;">
                    <td><a href="http://www.nfhsnetwork.com/channels/seaside-seaside-oregon" target="_blank">Seaside High School</a></td>
                    <td>Seaside</td>
                    <td>4A Football, Soccer</td>
                    </tr>
                    
                    <tr style="height:4em;">
                    <td>The Sports Legend ESPN 960 (Klamath Falls)<br>
    <a href="http://www.mybasin.com/listen-live/" target="_blank">mybasin.com</a></td>
                    <td>Klamath Basin schools</td>
                    <td>Football</td>           
                </tr>
                
                <tr style="height:4em;">
                    <td><a href="http://www.ihigh.com/tablerocksports/" target="_blank">Table Rock Sports</a></td>
                    <td>Crater, North Medford, South Medford</td>
                    <td>6A Football, Soccer</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>The Ticket 1240 KTIX (Pendleton)<br>
                    <a href="http://mycolumbiabasin.com/" target="_blank">mycolumbiabasin.com</a></td>
                    <td>Pendleton</td>
                    <td>5A Football</td>
                
                    <tr style="height:4em;">
                          <td><a href="http://tigardhighboosters.org/tigard-broadcast-network/" target="_blank">Tigard Broadcast Network</a></td>
                    <td>Tigard</td>
                    <td>6A Football, Volleyball, Soccer</td>
                </tr>
                    
                    
                    
                    

                <tr style="height:4em;">
                    <td>4A Baseball and Softball</td>
                    <td>Madras</td>
                    <td>KWSO 91.9 FM (Warm Springs)<br>
    <a href="http://www.wstribes.org/kwsolive" target="_blank">kwso.org</a></td>
                </tr>
                
                 <tr style="height:4em;">
                    <td>4A Baseball and Softball</td>
                    <td>Newport</td>
                    <td>KNPT 1310 AM / 98.3 FM (Newport)<br>
    <a href="http://knptam.com/" target="_blank">knptam.com</a></td>
                </tr>
                
                <tr style="height:4em;">
                    <td>5A Baseball</td>
                    <td>Ashland</td>
                    <td><a href="http://client.stretchinternet.com/client/ashlandhs.portal#" target="_blank">Ashland Grizz Radio</a></td>
                </tr>
                
                <tr style="height:4em;">
                    <td>5A Baseball and Softball</td>
                    <td>The Dalles Wahtonka</td>
                    <td>KODL 1440 AM (The Dalles)<br>
    <a href="http://kodl.com/" target="_blank">kodl.com</a></td>
                </tr>
                    
                <tr style="height:4em;">
                    <td>2A/1A Softball</td>
                    <td>Union/Cove</td>
                    <td>Boomer Radio 105.9 FM / 95.3 FM (La Grande / Baker City)</td>
                </tr>
                
                <tr style="height:4em;">
                    <td>3A Softball</td>
                    <td>Toledo</td>
                    <td>KNCU 92.7 FM (Newport)</td>
                </tr>
                
                 <tr style="height:4em;">
                    <td>5A Softball</td>
                    <td>Pendleton</td>
                    <td>KTIX 1240 AM (Pendleton)<br>
    <a href="http://mycolumbiabasin.com/" target="_blank">mycolumbiabasin.com</a></td>
                </tr>
                
                <tr style="height:4em;">
                    <td>5A Softball</td>
                    <td>Hood River Valley</td>
                    <td>KIHR 1340 AM / 98.3 FM (Hood River)<br>
    <a href="http://www.kihramfm.com/page/Eagle_Sports/74" target="_blank">kihramfm.com</a></td>
                </tr>

                
            </table>
            <!-- End of Approved Broadcasters Table -->
     
            <?php endif; ?>
            */

            ?>

            <br /><br />

            

        </div>


        <?php /*  Broadcasting  */ ?>
        <div id="broadcasting" style="min-height: 590px;">   
            
            <?php /*  Broadcasting Sub-Tabs  */ ?>
            <div class="vertical_tabs">
                <ul style="padding-left: 5px; font-size: 9pt; list-style-type: none !important; min-height: 570px;">                    
                    <li><a href="#broadcasting-policy">Broadcast Policy</a></li>
                    <li><a href="#broadcasting-audio">Audio Agreement</a></li>
                    <li><a href="#broadcasting-video">Video Agreement</a></li>                                        
                    <li><a href="#broadcasting-spots">Spots &amp; Drop-Ins</a></li>
                    <li><a href="#broadcasting-psas">PSAs</a></li>
                    <li><a href="#broadcasting-register">Registration Form</a></li>
                    <li><a href="#broadcasting-affidavit">Affidavit</a></li>
                </ul>

                <?php /*  Policy  */ ?>
                <div id="broadcasting-policy" style="font-size: 10pt; line-height: 1.15em;">
                    
                    <div class="small gray note">
                        STAFF CONTACT: Steve Walker, Sports Information Director, (503) 682-6722 x232, <?php echo Helpers::obfuscateEmailLink ("stevew@osaa.org"); ?>
                    </div>

                    <h2>Register to Broadcast OSAA State Playoff Games</h2>

                    Radio and television stations, cable companies, and websites planning to broadcast games in any round of the OSAA playoffs must register with the OSAA by submitting an online registration form.  
                   
                    <br /><br />

                    <b>Please do the following in this order (refer to tabs on left):</b>
                    <ol>
						<li>Read the OSAA Broadcast Policy below.</li>
                        <li>Read the Audio Agreement or Video Agreement.</li>
                        <li>If an audio only broadcast, download required Spots & Drop-Ins. </li>
                        <li>Complete the Registration Form (be sure to press "Submit").</li>
                    </ol>

                    <br />

                    
                    <h2>OSAA Broadcast Policy</h3>
                    <ol>
                        <li>All OSAA events must be referred to as the "OSAA / OnPoint Community Credit Union (INSERT EVENT) State Championship(s)."</li>
                        <li>Advertising for the following products is prohibited during any broadcast of an OSAA State Championship event: tobacco, alcoholic beverages, political parties, political candidates, adult entertainment, casinos, sports books, online gambling, and promotion of any product illegal for people under 18.</li>
                        <li>Criticism of an official, coach, team, player, or school during the broadcast is prohibited.</li>
                        <li>The OSAA and its member schools retain the right to refuse broadcasting privileges to any outlet or person.</li>
                        <li>An OSAA member school in a rights agreement with a local media outlet may refuse broadcast privileges to another media outlet in the same market when hosting an OSAA playoff game.  This policy does not pertain to contests at OSAA final sites and football semifinal games unless the member school is hosting the final site or football semifinal and its team is participating.</li>
                    </ol>                    

                </div>
                <?php /*  End Policy  */ ?>


                <?php /*  Audio  */ ?>
                <div id="broadcasting-audio">
                    <h2>Radio/Internet Audio Broadcasting Agreement</h2>                    
                     
                    <div style="font-size: 10pt; line-height: 1.15em;">   
                        <h3>Outlets Originating Broadcasts</h3>
                        <p>
                            Outlets originating broadcasts will not pay a rights fee, but agree to air a schedule of spots for OSAA and its sponsors within each broadcast and provide proof of performance affidavits.  Refer to the <b>Spots &amp; Breaks</b> and <b>Affidavit</b> tabs on the left.
                        </p>                       

                        <h4>The following schedule of spots must air within each broadcast an outlet originates:</h4>
                        <p>            
                            <ol style="list-style-type: lower-alpha;">
                                <li>One 30-second OSAA Open Adjacency spot immediately prior to the open of the broadcast and one 30-second OSAA Close Adjacency spot immediately following the close of the broadcast.</li>
                                <li>Four 30-second OnPoint Community Credit Union spots (** one each during pre-game, 1<sup>st</sup> half, halftime, 2<sup>nd</sup> half)</li>
                                <li>LIVE Drop-Ins</li>
                            </ol>
                            <span style="margin-left: 1em;"><i>** If baseball or softball, spread spots throughout the broadcast.</i></span>
                        </p>

                        <h3>Telephone and Internet</h3>
                        <p>            
                            <ul>
                                <li>High School Sites - Outlets requiring a telephone line or Internet access must make advance arrangements with the host athletic director.  Outlets are responsible for telephone line installation costs if necessary.</li>
                                <li>Final Sites - The OSAA will provide telephone lines and Internet access and assign broadcast locations at all final sites and semifinal sites for football.</li>
                            </ul>
                        </p>        

                        <h3>OSAA Radio Network</h3>
                        <p>
                            Outlets carrying OSAA Radio Network feeds will not pay a rights fee, but agree to air a schedule of spots for the OSAA and its sponsors within each broadcast.    
                        </p>

                        <h4>The OSAA Radio Network will stream the following at <a href="<?php echo url('/'); ?>" target="_blank">www.osaa.org</a>:</h4>
                        <p>
                            <ul>
                                <li>Football semifinals and finals</li>
                                <li>Basketball quarterfinals through finals</li>
                                <li>Softball finals</li>
                                <li>Baseball finals</li>
                            </ul>
                        </p>

                        <h4>Download the OSAA Radio Network Break Format from the <b>Spots &amp; Breaks</b> tab on the left.</h4>                        

                        <br />

                        <h4>Feeds:</h4>
                        <p>
                            <ol>
                                <li>All spots included in the feed and inventory are split between network and local breaks.</li>
                                <li>Feeds are accessed by clicking on the corresponding link at <a href="<?php echo url('/media'); ?>" target="_blank"><?php echo url('/media'); ?></a></li>
								<li>Complete feed instructions are included in a media advisory e-mailed the week of the game.</li>
                            </ol>
                        </p>

                        <h3>Websites Linking to OSAA Radio Network or Radio Stations Broadcasts</h3>
                        <p>
                            <ol>
                                <li>Websites may link to an OSAA Radio Network stream provided they identify the link as "Provided by the OSAA Radio Network, sponsored by Pacific Office Automation".</li>
                                <li>Websites are prohibited from originating a stream of any game streamed by the OSAA Radio Network: football semifinals and finals, basketball quarterfinals through finals and softball and baseball finals.</li>                
                            </ol>                
                        </p>                        
                    </div>

                </div>
                <?php /*  End Audio  */ ?>


                <?php /*  Video  */ ?>
                <div id="broadcasting-video">
                    <h2>Television/Internet Video Broadcasting Agreement</h2>
                    
                    <div style="font-size: 10pt; line-height: 1.15em;">   
                        <h3>Outlets Originating Broadcasts</h3>
                        <p>
                            The NFHS Network is the exclusive video broadcast rights holder of OSAA postseason events.  Any individual broadcasting / streaming is strictly prohibited and in direct violation of the OSAA's agreement with the NFHS Network. 
							<br /><br />
							Streaming events declined by the NFHS Network must be approved by and a rights fee paid to the OSAA.                 
                        </p>

                        <h4>LIVE Broadcasts / Streams</h4>
                        <p>
                            <ol>
                                <li style="float: left; width: 33%;">
                                    Television - fee per game:<br />
                                    <table style="margin-left: 30px;">
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Football</td>
                                            <td style="padding-left: 10px;">$1,500</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Basketball</td>
                                            <td style="padding-left: 10px;">$1,000</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Volleyball</td>
                                            <td style="padding-left: 10px;">$500</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Soccer</td>
                                            <td style="padding-left: 10px;">$500</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Softball</td>
                                            <td style="padding-left: 10px;">$500</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Baseball</td>
                                            <td style="padding-left: 10px;">$500</td>
                                        </tr>
                                    </table>
                                </li>
                                <li style="float: left; width: 33%;">
                                    Websites - fee per game:<br />
                                    <table style="margin-left: 30px;">
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Football</td>
                                            <td style="padding-left: 10px;">$500</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Basketball</td>
                                            <td style="padding-left: 10px;">$250</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Volleyball</td>
                                            <td style="padding-left: 10px;">$150</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Soccer</td>
                                            <td style="padding-left: 10px;">$150</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Softball</td>
                                            <td style="padding-left: 10px;">$150</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Baseball</td>
                                            <td style="padding-left: 10px;">$150</td>
                                        </tr>
                                    </table>
                                </li>
                                <li style="float: left; width: 33%;">NFHS Network School Broadcast Program member or affiliate website - No charge.  All postseason streams must be produced as subscription events.</li>
                                <li style="clear: both; padding-top: 1em;">                    
                                    LIVE television and internet streaming are not allowed for the following (Exception - events declined by the NFHS Network and produced by NFHS Network School Broadcast Program members and affiliate websites):<br />
                                        <table style="margin-left: 30px; width: 60%;">
                                            <tr>
                                                <tr>
                                                    <td style="width: 50%;">
                                                        Volleyball quarterfinals through finals<br />
                                                        Soccer finals<br />
                                                        Football semifinals and finals<br />
                                                        Cheerleading<br />
                                                        Swimming<br />
                                                        Wrestling
                                                    </td>
                                                    <td style="width: 50%;">
                                                        Basketball quarterfinals through finals<br />
                                                        Dance/Drill<br />
                                                        Track &amp; Field<br />
                                                        Softball finals<br />
                                                        Baseball finals<br /><br />
                                                    </td>
                                                </tr>
                                        </table>
                                </li>
                            </ol>
                        </p>       

                        <h4>DELAY Broadcasts / Streams</h4>
                        <p>
                            <ol>
                                <li style="float: left; width: 33%;">
                                    Television - fee per game:<br />
                                    <table style="margin-left: 30px;">
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Football</td>
                                            <td style="padding-left: 10px;">$750</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Basketball</td>
                                            <td style="padding-left: 10px;">$500</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Volleyball</td>
                                            <td style="padding-left: 10px;">$250</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Soccer</td>
                                            <td style="padding-left: 10px;">$250</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Softball</td>
                                            <td style="padding-left: 10px;">$250</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Baseball</td>
                                            <td style="padding-left: 10px;">$250</td>
                                        </tr>
                                    </table>
                                </li>
                                <li style="float: left; width: 33%;">
                                    Websites - fee per game:<br />
                                    <table style="margin-left: 30px;">
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Football</td>
                                            <td style="padding-left: 10px;">$250</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Basketball</td>
                                            <td style="padding-left: 10px;">$150</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Volleyball</td>
                                            <td style="padding-left: 10px;">$75</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Soccer</td>
                                            <td style="padding-left: 10px;">$75</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Softball</td>
                                            <td style="padding-left: 10px;">$75</td>
                                        </tr>
                                        <tr>
                                            <td style="width: 75px; text-align: right;">Baseball</td>
                                            <td style="padding-left: 10px;">$75</td>
                                        </tr>
                                    </table>
                                </li>
                                <li style="float: left; width: 33%;">NFHS Network School Broadcast Program member or affiliate website - No charge.  All postseason streams must be produced as subscription events.</li>
                                <li style="clear: both; padding-top: 1em;">                    
                                    DELAY broadcasts may air beginning at 12:01 a.m. the day after the event.
                                </li>
                                <li>
                                    A complete replay may air no more than four times by television stations granted broadcast rights.
                                </li>
                                <li>                    
                                    DELAY television and internet streaming are not allowed for the following:<br />
                                        <table style="margin-left: 30px; width: 60%;">
                                            <tr>
                                                <tr>
                                                    <td style="width: 50%;">
                                                        Volleyball finals<br />
                                                        Soccer finals<br />
                                                        Football semifinals and finals<br />
                                                        Cheerleading<br />
                                                        Swimming<br />
                                                        Wrestling
                                                    </td>
                                                    <td style="width: 50%;">
                                                        Basketball finals<br />
                                                        Dance/Drill<br />
                                                        Track &amp; Field<br />
                                                        Softball finals<br />
                                                        Baseball finals<br /><br />
                                                    </td>
                                                </tr>
                                        </table>
                                </li>
                            </ol>
                        </p>

                        <h3>Feeds</h3>
                        <p>
                            <ol>
                                <li>Outlets granted rights may not feed broadcasts to additional outlets without permission from the OSAA.</li>
                                <li>Outlets taking feeds also must pay rights fees.</li>
                            </ol>
                        </p>
                        
                        <p>
                            Outlets will be invoiced at the end of fall, winter, and spring championship seasons.    
                        </p> 
                    </div>

                </div>
                <?php /*  End Video  */ ?>


                <?php /*  Registration  */ ?>
                <div id="broadcasting-register" style="font-size: 11pt;">                    

                    <h2>OSAA State Championships Broadcast Registration Form</h2>

                    <div class="online_form_instructions ui-corner-all" style="font-size: 9pt; line-height: 1.2em;">
                        <span class="ui-icon ui-icon-info" style="display:inline-block; position:relative; top:2px;"></span>
                        <b>Instructions</b> <br />
                        <ol>
                            <li>This form is required for all radio and television stations, cable companies and websites planning to broadcast games in any round of the OSAA playoffs.</li>
                            <li>This form DOES NOT pertain to play-in games or league playoffs.</li>                        
                            <li>Only one form is required for each season (fall, winter, spring) and applies to all sports in a season.</li>
                            <li>DO NOT complete additional forms for subsequent broadcasts.  For your next broadcasts, e-mail <?php echo Helpers::obfuscateEmailLink ('stevew@osaa.org'); ?> confirming game, call letters/website, and frequency/channel/URL.</li> 
                            <li>When finished, click <b>Submit</b>.   An e-mail will be sent to Steve Walker and to your e-mail address for confirmation.</li>
                            <li>Authorized broadcasts will be listed at <a href="<?php echo url('/media'); ?>">www.osaa.org/media</a>.  Outlets that do not register in advance will not be allowed to broadcast.</li>
                        </ol>

                        <br />

                        For questions, contact Steve Walker at (503) 682-6722 x232 or <?php echo Helpers::obfuscateEmailLink ('stevew@osaa.org'); ?>.  For technical assistance, e-mail <?php echo Helpers::obfuscateEmailLink ("support@osaa.org"); ?>.
                    </div>      

                    <br />                    
                    
                    <?php echo Form::open(array('url'    => url('/forms/submit'),
                                        'method' => 'post',
                                        'class'  => 'media_form',
                                        'style'  => 'font-size: 10pt; line-height: 1.15em;')); ?>

                        <?php echo Form::hidden('form', 'MEDIA'); ?>

                        <h2>Broadcast Company / Organization</h2>

                        <br />

                        <b>Broadcast Type</b> 

                        <div id="broadcast_type" class="buttonset" style="font-size:9pt; display:inline;" required="required">              
                            <input type="radio"
                                   id="radio1"
                                   name="broadcast_type"
                                   value="Radio" />
                            <label for="radio1" class="tooltip" title="Select if you are broadcasting via radio.">Radio</label>    
                            
                            <input type="radio"
                                   id="radio2"
                                   name="broadcast_type"
                                   value="Television" />
                            <label for="radio2" class="tooltip" title="Select if you are broadcasting via television.">Television</label>
                            
                            <input type="radio"
                                   id="radio3"
                                   name="broadcast_type"
                                   value="Internet Video" />
                            <label for="radio3" class="tooltip" title="Select this type if you are broadcasting a video/audio feed over the internet.">Internet Video</label>
                            
                            <input type="radio"
                                   id="radio4"
                                   name="broadcast_type"
                                   value="Internet Audio" />
                            <label for="radio4" class="tooltip" title="Select this type if you are broadcasting over the internet an audio feed only.">Internet Audio</label>           
                            
                        </div>

                        <br /><br />

                        <?php echo Form::label('organization_name', 'Name of Radio or Television Station, Cable Company or Website'); ?>
                        <?php echo Form::text('organization_name', null, array('style' => 'width: 300px;', 'required' => 'required')); ?>

                        <br /><br />
                        
                        <?php echo Form::label('frequency', 'Frequency, Channel or Website URL'); ?>
                        <?php echo Form::text('frequency', null, array('style' => 'width: 300px;', 'required' => 'required')); ?>

                        <br /><br />
                        
                        <?php echo Form::label('representative', 'Representative (Your Name)'); ?>
                        <?php echo Form::text('representative', null, array('style' => 'width: 200px;', 'required' => 'required')); ?>
                        
                        <br /><br />
                        
                        <?php echo Form::label('email', 'E-Mail Address'); ?>
                        <?php echo Form::text('email', null, array('style' => 'width: 200px;', 'required' => 'required')); ?>

                        <br /><br />
                        
                        <?php echo Form::label('address', 'Mailing Address'); ?>
                        <?php echo Form::text('address', null, array('style' => 'width: 400px;', 'required' => 'required')); ?>

                        <br /><br />    
                        
                        <?php echo Form::label('city', 'City'); ?>
                        <?php echo Form::text('city', null, array('style' => 'width: 150px;', 'required' => 'required')); ?>     
                        
                        <?php echo Form::label('state', 'State', array('style' => 'margin-left: 25px;')); ?>
                        <?php echo Form::text('state', null, array('style' => 'width: 45px;', 'maxlength' => '2', 'required' => 'required')); ?>

                        <?php echo Form::label('zip', 'Zip', array('style' => 'margin-left: 25px;')); ?>
                        <?php echo Form::text('zip', null, array('style' => 'width: 85px;', 'maxlength' => '10', 'required' => 'required')); ?>

                        <br /><br />

                        <?php echo Form::label('mobile', 'Mobile Phone Number'); ?>
                        <?php echo Form::text('mobile', null, array('style' => 'width: 125px;', 'required' => 'required')); ?>

                        <?php echo Form::label('work', 'Work Phone Number', array('style' => 'margin-left: 25px;')); ?>
                        <?php echo Form::text('work', null, array('style' => 'width: 125px;', 'required' => 'required')); ?>

                        <br />

                        <br class="clear" />
                        <div class="horizontal_divider" style="width: 100%;"></div>
                        <br />

                        
                        <h2>Sport / Activity Coverage</h2>

                        <br />


                        <b>Season</b> 

                        <div id="season" class="buttonset" style="font-size:9pt; display:inline;" required="required">              
                            <input type="radio"
                                   id="radio21"
                                   name="season"
                                   value="Fall" />
                            <label for="radio21" class="tooltip" title="Select for Fall sports and activities.">Fall</label>    
                            
                            <input type="radio"
                                   id="radio22"
                                   name="season"
                                   value="Winter" />
                            <label for="radio22" class="tooltip" title="Select for Winter sports and activities.">Winter</label>
                            
                            <input type="radio"
                                   id="radio23"
                                   name="season"
                                   value="Spring" />
                            <label for="radio23" class="tooltip" title="Select for Spring sports and activities.">Spring</label>                    
                            
                        </div>      

                        <?php echo Form::label('sports', 'Sport(s)', array('style' => 'margin-left: 50px;')); ?>
                        <?php echo Form::text('sports', null, array('style' => 'width: 250px;', 'required' => 'required')); ?>
                        <br />
                        <span class="small gray note" style="margin-left: 327px;">Type in which sport(s) you plan to cover.</span>

                        <br /><br />

                        <b>Gender</b> 

                        <div id="gender" class="buttonset" style="font-size:9pt; display:inline;" required="required">              
                            <input type="radio"
                                   id="radio31"
                                   name="gender"
                                   value="Boys" />
                            <label for="radio31" class="tooltip" title="Select if you are just covering boys sports/activities.">Boys</label>    
                            
                            <input type="radio"
                                   id="radio32"
                                   name="gender"
                                   value="Girls" />
                            <label for="radio32" class="tooltip" title="Select if you are just covering girls sports/activities.">Girls</label>
                            
                            <input type="radio"
                                   id="radio33"
                                   name="gender"
                                   value="Both" />
                            <label for="radio33" class="tooltip" title="Select if you are covering both boys and girls sports/activities.">Both</label> 
                            
                        </div>

                        <br /><br />

                        <?php echo Form::label('schools', 'School(s) Covering'); ?>
                        <?php echo Form::text('schools', null, array('style' => 'width: 250px;', 'required' => 'required')); ?>

                        <br /><br />

                        <b>Classification(s)</b>
                        <?php echo Form::checkbox('6A',
                                          true,
                                          false,
                                          array('id' => '6A',
                                                'class' => 'button')); ?>
                        <?php echo Form::label('6A', '6A', array('style' => 'font-size:9pt; margin-left: 15px;')); ?>        

                        <?php echo Form::checkbox('5A',
                                          true,
                                          false,
                                          array('id' => '5A',
                                                'class' => 'button')); ?>
                        <?php echo Form::label('5A', '5A', array('style' => 'font-size:9pt; margin-left: 15px;')); ?>

                        <?php echo Form::checkbox('4A',
                                          true,
                                          false,
                                          array('id' => '4A',
                                                'class' => 'button')); ?>
                        <?php echo Form::label('4A', '4A', array('style' => 'font-size:9pt; margin-left: 15px;')); ?>

                        <?php echo Form::checkbox('3A',
                                          true,
                                          false,
                                          array('id' => '3A',
                                                'class' => 'button')); ?>
                        <?php echo Form::label('3A', '3A', array('style' => 'font-size:9pt; margin-left: 15px;')); ?>

                        <?php echo Form::checkbox('2A',
                                          true,
                                          false,
                                          array('id' => '2A',
                                                'class' => 'button')); ?>
                        <?php echo Form::label('2A', '2A', array('style' => 'font-size:9pt; margin-left: 15px;')); ?>

                        <?php echo Form::checkbox('1A',
                                          true,
                                          false,
                                          array('id' => '1A',
                                                'class' => 'button')); ?>
                        <?php echo Form::label('1A', '1A', array('style' => 'font-size:9pt; margin-left: 15px;')); ?>
                        <span class="required_marker">*</span>

                        <br /><br />

                        <?php echo Form::label('first_date', 'First Broadcast Date'); ?>
                        <?php echo Form::text('first_date', null, array('style' => 'width:100px;', 'required' => 'required', 'class' => 'datepicker')); ?><br />
                        <span class="small gray note">MM/DD/YYYY (click text box for pop-up calendar)</span>

                        <br />
                        <br class="clear" />
                        <div class="horizontal_divider" style="width: 100%;"></div>
                        <br />

                        
                        <h2>Broadcast Specifics</h2>

                        <br />

                        <h3 style="color: #990000;">Radio / Internet Audio Broadcasts</h3>

                        <?php echo Form::label('orn_feed', 'Do you want a feed from the OSAA Radio Network?'); ?>
                        <?php echo Form::checkbox('orn_feed', false); ?><br />
                        <span class="small gray note">Available for football semifinals and finals, basketball quarterfinals through finals, softball finals, and baseball finals.</span>

                        <br /><br />

                        <b>If you are originating a broadcast, what method do you use?</b>      

                        <div id="origination_method" class="buttonset" style="font-size:9pt; display:inline;" required="required">              
                            <input type="radio"
                                   id="radio41"
                                   name="origination_method"
                                   value="Telephone Land Line" />
                            <label for="radio41">Telephone Land Line</label>    
                            
                            <input type="radio"
                                   id="radio42"
                                   name="origination_method"
                                   value="Cell Phone" />
                            <label for="radio42">Cell phone</label>
                            
                            <input type="radio"
                                   id="radio43"
                                   name="origination_method"
                                   value="Internet" />
                            <label for="radio43">Internet</label>   
                            
                        </div>

                        <br /><br />

                        <?php echo Form::label('stream_url', 'Website Stream URL'); ?>
                        <?php echo Form::text('stream_url', null, array('style' => 'width: 250px;')); ?><br />
                        <span class="small gray note">If your station plans to stream your radio broadcast.</span>

                        <br /><br />

                        <h3 style="color: #990000;">Television / Internet Video Broadcasts</h3>

                        <b>Please specify if your broadcast will be live or delay.</b>      

                        <div id="presentation" class="buttonset" style="font-size:9pt; display:inline;" required="required">                
                            <input type="radio"
                                   id="radio51"
                                   name="presentation"
                                   value="Live" />
                            <label for="radio51">Live Broadcast</label>    
                            
                            <input type="radio"
                                   id="radio52"
                                   name="presentation"
                                   value="Delay" />
                            <label for="radio52">Delay Broadcast</label>                   
                            
                        </div>      

                        <br />
                        <br class="clear" />
                        <div class="horizontal_divider" style="width: 100%;"></div>
                        <br />


                        <h2>Policies &amp; Agreement</h2>
                        <div style="float: left; width: 75px; height: 3em; text-align: center; line-height: 3em;">
                            <?php echo Form::checkbox('verify', true, false, array('required' => 'required')); ?>
                        </div>  
                        <b>As a representative of my radio or television station, cable company or website, I have read and agree to the OSAA Broadcast Policy and the Radio/Internet Audio or Television/Internet Video Broadcasting Agreement.</b>

                        <br class="clear" />
                        <div class="horizontal_divider" style="width: 100%;"></div>
                        <br />
                        
                        <h2>Comments/Notes</h2>

                        <br />
                        
                        <?php echo Form::textarea('notes', null, array('style' => 'height: 5em; width: 100%;')); ?>

                        <br /><br />

                        <?php echo Form::submit('Submit', array('class' => 'button float_right', 'style' => 'font-size: 9pt;')); ?>

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

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


                </div>


                <?php /*  Spots  */ ?>
                <div id="broadcasting-spots" style="font-size: 10pt; line-height: 1.15em;">                    
                    
                    <h2>Spots for Download</h3>

                    <h3>OSAA Adjacencies</h3>
                    &raquo; <a href="<?php echo asset('docs/media/OSAAOpen.mp3'); ?>" target="_blank">Open <small>(0:30)</small></a><br />
                    &raquo; <a href="<?php echo asset('docs/media/OSAAClose.mp3'); ?>" target="_blank">Close <small>(0:30)</small></a>                            

                    <br /><br />                    

                    <h3>OnPoint Community Credit Union</h3>                    
                    &raquo; <a href="<?php echo asset('docs/media/18OnPointFall1.mp3'); ?>" target="_blank">Fall #1 <small>(0:30)</small></a><br />
                    &raquo; <a href="<?php echo asset('docs/media/18OnPointFall2.mp3'); ?>" target="_blank">Fall #2 <small>(0:30)</small></a><br />

                    <br />
                    
                    <h3>Drop-Ins</h3>
                    &raquo; <a href="<?php echo asset('docs/media/dropins.pdf'); ?>" target="_blank">LIVE reads for OSAA / OnPoint Community Credit Union State Championships</a>
                                    
                    <br /><br />

                    <h2>OSAA Radio Network Break Formats</h2>
                    <p class="gray note">
                        Applicable only to stations taking feeds from the OSAA Radio Network.
                    </p>
                    &raquo; <a href="<?php echo asset('docs/media/fbbreakformat.pdf'); ?>" target="_blank">Football</a><br />
					&raquo; <a href="<?php echo asset('docs/media/basketballbreakformat.pdf'); ?>" target="_blank">Basketball</a><br />
					&raquo; <a href="<?php echo asset('docs/media/bbsbbreakformat.pdf'); ?>" target="_blank">Baseball/Softball</a>      
					
			<?php /*     
            
			 */ ?>  
                </div>
                <?php /*  End Spots  */ ?>


                <?php /*  PSAs  */ ?>
                <div id="broadcasting-psas" style="font-size: 10pt; line-height: 1.15em;">

                    <h2 style="margin-bottom: 20px;">Public Service Announcements</h2>   
                    
                    <h3>NFHS High School Activities Promotional AUDIO PSA's</h3>
                    &raquo; <a href="<?php echo asset('docs/media/OR_1_Off and Running 60.mp3'); ?>" target="_blank">:60 Off and Running</a><br />
                    &raquo; <a href="<?php echo asset('docs/media/OR_2_Leaders We Can Depend On 60.mp3'); ?>" target="_blank">:60 Leaders We Can Depend On</a><br />
					&raquo; <a href="<?php echo asset('docs/media/OR_3_Leaders We Can Depend On 30.mp3'); ?>" target="_blank">:30 Leaders We Can Depend On</a><br />
                    &raquo; <a href="<?php echo asset('docs/media/OR_4_No Debate About It 60.mp3'); ?>" target="_blank">:60 No Debate About It</a><br />
                    &raquo; <a href="<?php echo asset('docs/media/OR_5_Isnt It Amazing 60 (Officials Recruitment) rev.mp3'); ?>" target="_blank">:60 Isn't It Amazing (Officials Recruitment)</a><br /> 
                    &raquo; <a href="<?php echo asset('docs/media/OR_6_Community Leaders Inspire Others 60_rev.mp3'); ?>" target="_blank">:60 Community Leaders Inspire Others</a><br /> 
					&raquo; <a href="<?php echo asset('docs/media/OR_7_Purpose Love for the Game 60.mp3'); ?>" target="_blank">:60 Purpose Love for the Game</a><br /> 
					&raquo; <a href="<?php echo asset('docs/media/OR_8_Purpose Love for the Game 30.mp3'); ?>" target="_blank">:30 Purpose Love for the Game</a><br /> 
					&raquo; <a href="<?php echo asset('docs/media/OR_9_Lets Be Real 60.mp3'); ?>" target="_blank">:60 Lets Be Real</a><br /> 
                    
                    <?php /*  
					
					                    &raquo; <a href="<?php echo asset('docs/media/NFHSKnew60.mp3'); ?>" target="_blank">:60 I Knew That</a><br />
                    &raquo; <a href="<?php echo asset('docs/media/NFHSSpecial30.mp3'); ?>" target="_blank">:30 You Make it Special</a><br />
                    &raquo; <a href="<?php echo asset('docs/media/NFHSSpecial60.mp3'); ?>" target="_blank">:60 You Make it Special</a><br />
                    &raquo; <a href="<?php echo asset('docs/media/NFHSLeadership30.mp3'); ?>" target="_blank">:30 Leadership You Can Believe In</a><br /> 
                    &raquo; <a href="<?php echo asset('docs/media/NFHSLeadership60.mp3'); ?>" target="_blank">:60 Leadership You Can Believe In</a><br /> 
					
                        &raquo; <a href="<?php echo asset('docs/media/NFHSKnew60.mp3'); ?>" target="_blank">:60 I Knew That</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/NFHSSpecial30.mp3'); ?>" target="_blank">:30 You Make it Special</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/NFHSSpecial60'); ?>" target="_blank">:60 You Make it Special</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/NFHSLeadership30.mp3'); ?>" target="_blank">:30 Leadership You Can Believe In</a><br /> 
                        &raquo; <a href="<?php echo asset('docs/media/NFHSLeadership60.mp3'); ?>" target="_blank">:60 Leadership You Can Believe In</a><br /> 
                                      
                        &raquo; <a href="<?php echo asset('docs/media/60Basketball.mp3'); ?>" target="_blank">:60 Who Do You Play For - Basketball</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/60Softball.mp3'); ?>" target="_blank">:60 Who Do You Play For - Softball</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/60Swimming.mp3'); ?>" target="_blank">:60 Who Do You Swim For</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/60Perform.mp3'); ?>" target="_blank">:60 Who Do You Perform For</a><br />   
                            
                        &raquo; <a href="<?php echo asset('docs/media/30Basketball.mp3'); ?>" target="_blank">:30 Who Do You Play For - Basketball</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/30Softball.mp3'); ?>" target="_blank">:30 Who Do You Play For - Softball</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/30Swimming.mp3'); ?>" target="_blank">:30 Who Do You Swim For</a><br />
                        &raquo; <a href="<?php echo asset('docs/media/30Perform.mp3'); ?>" target="_blank">:30 Who Do You Perform For</a><br />   
                     */ ?>            
                                                    
                    
                    <h3>OSAA / OSAA Foundation VIDEO PSA's</h3>
                    <div class="columns">
                        <div class="half">
                            &raquo; <a href="http://www.youtube.com/watch?v=e-uR9eVWVso">Jordan Kent</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=YPTKaeUQ3ls">Anna Maria Lopez</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=XObZJc8Yta8">Galen Rupp</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=0lxO_KzfU9o">Rosemary St. Clair</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=1j4TPtwobD0">Scott Brosius</a><br />
                            &raquo; <a href="https://www.youtube.com/watch?v=I2BCatROaJU">Mike Riley</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=FvZF_wo64Bg">Sherri Murrell</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=kSV9bxhhujA">Malia Wasson</a><br />
                        </div>
                        
                        <div class="half">                            
                            &raquo; <a href="http://www.youtube.com/watch?v=ZM38WPnxeno">Joe Rector</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=kMx3WKSIjFQ">Chris Crawford</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?v=dyg6_aSqiGY&feature=youtu.be">Terrell Brandon</a><br />
                            &raquo; <a href="http://www.youtube.com/watch?&v=Ejo5Y9Zcab4">Dave Metzger</a><br />
                            &raquo; <a href="https://www.youtube.com/watch?v=narP7DS7j80">Teri Mariani</a><br />
                            &raquo; <a href="https://www.youtube.com/watch?v=A4TS-fvzKnk">Dan O'Brien</a><br />
                            &raquo; <a href="https://www.youtube.com/watch?v=GCse-e_7XWc">Ashton Eaton</a><br />
                        </div>
                    </div>    

                    <br class="clear" />      

                    <h3>NFHS VIDEO PSA</h3>
                    &raquo; <a href="<?php echo asset('docs/media/Oregon.wmv'); ?>" target="_blank">:30 NFHS Lifelong Lessons (.wmv)</a>

                </div>
                <?php /*  End PSAs   */ ?>


                <?php /*  Affidavit  */ ?>
                <div id="broadcasting-affidavit" style="font-size: 10pt; line-height: 1.15em;">

                    <h2>Affidavit of Performance</h2>
                    <p>
                        Outlets must submit proof of performance affidavits for the required schedule of spots for each broadcast.
                    </p>
                    <p>        
                        &raquo; <a href="<?php echo asset('/docs/media/affidavitofperformance.pdf'); ?>" target="_blank">Affidavit of Performance Form</a>
                    </p>
                    <p>
                        Email this affidavit or an alternate affidavit format your station uses to <?php echo Helpers::obfuscateEmailLink ('stevew@osaa.org'); ?>.  Stations failing to provide affidavits will be prohibited from broadcasting future OSAA playoff games.                
                    </p>                

                </div>
                <?php /*  End Affidavit   */ ?>
    	
            </div>
    	
        	
        </div>


    <?php /*  OSAA Logos  */ ?>
    <div id="logos" style="font-size: 10pt; line-height: 1.15em;">            
    
        <h2>OSAA Logos</h2>
            Media outlets are encouraged to download OSAA logos for use in their coverage.  Request activity specific championship logos by contacting Kyle Stanfield, 503.682.6722 x239 / <?php echo Helpers::obfuscateEmailLink ("kyles@osaa.org"); ?>.<br>
        	<span class="linkList">
                <br />
                &raquo; <a href="http://www.osaa.org/images/logo?school=adrian">School Logos</a> (change name of school in URL to access other schools)<br />
                &raquo; OSAA Circle Color Logo &raquo;<a href="<?php echo asset ('images/logos/OSAACircleColoreps.eps'); ?>" target="_blank">EPS</a> | &raquo; <a href="<?php echo asset ('images/logos/OSAACircleColortif.tif'); ?>" target="_blank">TIF</a> | &raquo; <a href="<?php echo asset ('images/logos/OSAACircleColorjpg.jpg'); ?>" target="_blank">JPG</a> <br>
                &raquo; OSAA Circle B&amp;W Logo &raquo;<a href="<?php echo asset ('images/logos/OSAACircleBWeps.eps'); ?>" target="_blank">EPS</a> | &raquo; <a href="<?php echo asset ('images/logos/OSAACircleBWtif.tif'); ?>" target="_blank">TIF</a> | &raquo; <a href="<?php echo asset ('images/logos/OSAACircleBWjpg.jpg'); ?>" target="_blank">JPG</a> <br>
                
                &raquo; OSAA State Championship Color Logo &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo.eps'); ?>" target="_blank">EPS</a> | &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo.tif'); ?>" target="_blank">TIF</a> | &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo.jpg'); ?>" target="_blank">JPG</a> | &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo.png'); ?>" target="_blank">PNG</a> <br />
                &raquo; OSAA State Championship B&amp;W Logo &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo BW.eps'); ?>" target="_blank">EPS</a> | &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo BW.tif'); ?>" target="_blank">TIF</a> | &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo BW.jpg'); ?>" target="_blank">JPG</a> | &raquo;
                    <a href="<?php echo asset ('images/logos/State Championship Logo BW.png'); ?>" target="_blank">PNG</a> <br />          
            </span>
          </p>
	</div>


    <?php /*  Photography Guidelines  */ ?>
    <div id="photography" style="font-size: 10pt; line-height: 1.15em;">            
        
        <h2>Photography Guidelines</h2>
              
        <h3>Flash Photography</h3>
        <p>
            Flash photography, including on-and-off camera flash / strobe units, is permitted at all OSAA events. Remote flash / strobe units should be used wherever possible. Please avoid shooting directly into participants' eyes with flash-mounted units.  If the OSAA representative on site views a flash as a safety issue due to the layout of a particular venue, the photographer may be asked to disable the flash.
        </p>
        
        <h3>Designated Photography Locations</h3>
        <p>
            Note: The OSAA or game officials may alter the following photography locations due to safety or to accommodate a specific facility.
        </p>

        <h4>Baseball / Softball</h4>        
        <p>
            Designated areas along the first and third baselines (must be designated dead ball areas).
        </p>

        <h4>Basketball</h4>
        <p>
            Each end of the court. Set up at least 10 feet behind the end line.
        </p>
        
        <h4>Cheerleading</h4>
        <p>
            At least 10 feet off the competition mat and out of the direct line of the judges.
        </p>
        
        <h4>Cross Country</h4>
        <p>
            When shooting the start, photographers must give the field a minimum of 50 yards to allow for time to shoot and move off the course. Photographers may shoot from either side at the finish line in designated areas, but are not allowed in the race path.
        </p>
        
        <h4>Football</h4>
        <p>
            Sidelines except within the team boxes. Set up at least five yards behind the sideline.
        </p>
        
        <h4>Golf</h4>
        <p>
            Observe golf etiquette. Be aware of camera noise; shoot only after the ball is struck. Remain off greens and tee boxes.
        </p>
        
        <h4>Soccer</h4>
        <p>
            Sidelines (except within the team boxes) and endlines between the 18-yard box and the corners of the field.  Set up at least five yards behind the sideline or endline.
        </p>
        
        <h4>Swimming</h4>
        <p>
            Corners of the bulkhead. Allow space for officials to walk both sides of the pool.  Due to use of sound and flash starting systems, avoid flash photography during the start of a race.
        </p>
        
        <h4>Tennis</h4>
        <p>
            Either side of the net and the corners of the court. Do not change positions until the players have switched sides.
        </p>
        
        <h4>Track &amp; Field</h4>
        <p>
            In all events, consider the safety of yourself and the participants and provide a reasonable cushion. Provide a 40-meter cushion when shooting sprints and hurdles head on. Remain off the shot put, discus and javelin fields.
        </p>
        
        <h4>Volleyball</h4>
        <p>
            Set up to shoot at least 10 feet off the court. If shooting at the net, remain behind the officials and do not set up between adjacent courts.
        </p>
        
        <h4>Wrestling</h4>
        <p>
            At least four feet off the mat. Shooting from the team corners and interfering with sight lines are prohibited.
        </p>
    </div>
	
	<?php /*  Social Media  */ ?>
    <div id="social-media" style="font-size: 10pt; line-height: 1.15em;">
		<h2>Social Media</h2>
			Follow @OSAAsports on social media for the latest OSAA news and information.
	
		<h3>Facebook</h3>
			<img src="<?php echo asset('/images/logos/facebook_logo.png'); ?>" style="width: 24px; height: 24px; vertical-align: middle" />
			<a href="https://www.facebook.com/osaasports/" target="_blank" style="line-height: 24px;">Oregon School Activities Association</a>
		
		<h3>Twitter</h3>
			<img src="<?php echo asset('/images/logos/twitter_logo.png'); ?>" style="width: 24px; height: 24px; vertical-align: middle" />
			<a href="https://twitter.com/OSAASports" target="_blank" style="line-height: 24px;">OSAA</a>

		<h3>Instagram</h3>
			<img src="<?php echo asset('/images/logos/instagram_logo.png'); ?>" style="width: 24px; height: 24px; vertical-align: middle" />
			<a href="https://www.instagram.com/osaasports/" target="_blank" style="line-height: 24px;">OSAA Sports</a>
	</div>
</div>

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