﻿function OnChanged(dropdown)
{
    var myindex = dropdown.selectedIndex;
    switch(myindex)
    {
        case 1:
            var subject = dropdown.options[dropdown.selectedIndex].text;
            document.getElementById('ctl00_main_hdSubject').value=dropdown.options[dropdown.selectedIndex].text;
            document.getElementById('ctl00_main_hdCustPhoneNbr').value = '1-800-965-8042';
            document.getElementById('ctl00_main_lblCustomerServicePhone').innerHTML = document.getElementById('ctl00_main_hdCustPhoneNbr').value;
            document.getElementById('ctl00_main_hdEmailTo').value = 'approvals@drivetime.com';
            if(document.getElementById('ctl00_main_hdCulture').value == 'en-US')
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:approvals@drivetime.com?subject=Purchasing/financing a vehicle"/>approvals@drivetime.com</a>';
            }
            else
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:approvals@drivetime.com?subject=Comprando/financiando un vehiculo"/>approvals@drivetime.com</a>';
            }
            break;
        case 2:
            var subject = dropdown.options[dropdown.selectedIndex].text;
            document.getElementById('ctl00_main_hdSubject').value=dropdown.options[dropdown.selectedIndex].text;		                
            document.getElementById('ctl00_main_hdCustPhoneNbr').value = '1-800-965-8526';
            document.getElementById('ctl00_main_lblCustomerServicePhone').innerHTML = document.getElementById('ctl00_main_hdCustPhoneNbr').value;
            document.getElementById('ctl00_main_hdEmailTo').value = 'customerservice@drivetime.com';
            if(document.getElementById('ctl00_main_hdCulture').value == 'en-US')
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:customerservice@drivetime.com?subject=My auto loan with DriveTime"/>customerservice@drivetime.com</a>';
            }
            else
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:customerservice@drivetime.com?subject=Mi préstamo automovilístico con DriveTime"/>customerservice@drivetime.com</a>';
            }
            break;
        case 3:
            document.getElementById('ctl00_main_hdSubject').value=dropdown.options[dropdown.selectedIndex].text;
            document.getElementById('ctl00_main_hdCustPhoneNbr').value = '1-866-387-3724';
            document.getElementById('ctl00_main_lblCustomerServicePhone').innerHTML = document.getElementById('ctl00_main_hdCustPhoneNbr').value;
            document.getElementById('ctl00_main_hdEmailTo').value = 'dtfixit@drivetime.com';
            if(document.getElementById('ctl00_main_hdCulture').value == 'en-US')
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:dtfixit@drivetime.com?subject=My DriveCare Package"/>dtfixit@drivetime.com</a>';
            }
            else
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:dtfixit@drivetime.com?subject=Mi garantía DriveTime"/>dtfixit@drivetime.com</a>';
            }
            break;
        case 4:
            document.getElementById('ctl00_main_hdSubject').value=dropdown.options[dropdown.selectedIndex].text;
            document.getElementById('ctl00_main_hdCustPhoneNbr').value = '';
            document.getElementById('ctl00_main_lblCustomerServicePhone').innerHTML = document.getElementById('ctl00_main_hdCustPhoneNbr').value;
            document.getElementById('ctl00_main_hdEmailTo').value = 'recruiter@drivetime.com';
            if(document.getElementById('ctl00_main_hdCulture').value == 'en-US')
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:recruiter@drivetime.com?subject=Employment Opportunities"/>recruiter@drivetime.com</a>';
            }
            else
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:recruiter@drivetime.com?subject=Oportunidades de empleo"/>recruiter@drivetime.com</a>';
            }
            break;
        case 5:
            document.getElementById('ctl00_main_hdSubject').value=dropdown.options[dropdown.selectedIndex].text;
            document.getElementById('ctl00_main_hdCustPhoneNbr').value = '1-800-965-8526';
            document.getElementById('ctl00_main_lblCustomerServicePhone').innerHTML = document.getElementById('ctl00_main_hdCustPhoneNbr').value;
            document.getElementById('ctl00_main_hdEmailTo').value = 'customerservice@drivetime.com';
            if(document.getElementById('ctl00_main_hdCulture').value == 'en-US')
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:customerservice@drivetime.com?subject=Compliments and concerns"/>customerservice@drivetime.com</a>';
            }
            else
            {
                document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='<a href="mailto:customerservice@drivetime.com?subject=Elogios y preguntas"/>customerservice@drivetime.com</a>';
            }
            break;
        default:
            document.getElementById('ctl00_main_hdSubject').value='';
            document.getElementById('ctl00_main_lblContactEmailTo').innerHTML='';
            document.getElementById('ctl00_main_lblCustomerServicePhone').innerHTML='';
            document.getElementById('ctl00_main_hdCustPhoneNbr').value = '';
            document.getElementById('ctl00_main_hdEmailTo').value = '';
            break;        
    }
}