﻿// JavaScript File

function emailTo(whichAddr)
{
    el = document.getElementById(whichAddr);
    
    switch(whichAddr)
   {
        case 'linkPres':
             el.href = 'mailto:peineptopres@yahoo.com';
             break;
             
        case 'linkVp':
             el.href = 'mailto:peineptovp@yahoo.com';
             break;             
             
        case 'linkTres':
             el.href = 'mailto:peineptotres@yahoo.com';
             break;
             
        case 'linkSec':
             el.href = 'mailto:peineptosec@yahoo.com';
             break;
             
        case 'linkPrincipal':
             el.href = 'mailto:deannakitson@wentzville.k12.mo.us';
             break;
             
        case 'linkAmb':
             el.href = 'mailto:ashleybarton@wentzville.k12.mo.us';
             break;
                                                                 
        case 'A1':
             el.href = 'mailto:';
             break;
                                                                 
        case 'A2':
             el.href = 'mailto:bblinda129@centurytel.net';
             break;
                                                                 
        case 'A3':
             el.href = 'mailto:luann1@centurytel.net';
             break;
                                                                 
        case 'A4':
             el.href = 'mailto:junkerfamily@charter.net';
             break;
                                                                 
        case 'A5':
             el.href = 'mailto:msadorf@charter.net';
             break;
                                                                 
        case 'A6':
             el.href = 'mailto:pookett@charter.net';
             break;
                                                                 
        case 'A7':
             el.href = 'mailto:';
             break;
                                                                 
        case 'A8':
             el.href = 'mailto:nrivera79@sbcglobal.net';
             break;
                                                                 
        case 'A9':
             el.href = 'mailto:msadorf@charter.net';
             break;
                                                                 
        case 'A10':
             el.href = 'mailto:rwillyard@color-art.com';
             break;
                                                                 
        case 'A11':
             el.href = 'mailto:';
             break;
                                                                 
        case 'A15':
             el.href = 'mailto:msadorf@charter.net';
             break;
                                      
        case 'A13':
             el.href = 'mailto:msadorf@charter.net';
             break;
                                     
        case 'A14':
             el.href = 'mailto:mark623@centurytel.net';
             break;
                                     
        case 'A12':
             el.href = 'mailto:mommyrn@charter.net';
             break;
                                                                
        case 'linkPubSec':
             el.href = 'mailto:lara.williams@prudentialalliance.com';
             break;
                                                                


        default:
            break; 
   } 
}

