/**
 * Lilly.com Country Selector Dropdown
 */

function buildCountryDropdown()
{
    var countries = new Array();

/**************** Countries ****************/
/*  countries[countries.length] = new Array("Country Name","http:/"+"/www.Country.com");*/

    countries[countries.length] = new Array("Argentina","http:/"+"/www.lilly-argentina.com");
    countries[countries.length] = new Array("Australia","http:/"+"/www.lilly.com.au");
    countries[countries.length] = new Array("Austria","http:/"+"/www.lilly.at");
    countries[countries.length] = new Array("Belgium","http:/"+"/www.lilly.be");
    countries[countries.length] = new Array("Brazil","http:/"+"/www.lilly.com.br");
    countries[countries.length] = new Array("Canada","http:/"+"/www.lilly.ca");
    countries[countries.length] = new Array("China","http:/"+"/www.lillychina.com");
    //countries[countries.length] = new Array("Chile","http:/"+"/www.lilly.cl");
    countries[countries.length] = new Array("Denmark","http:/"+"/www.eli-lilly.dk");
    countries[countries.length] = new Array("Estonia","http:/"+"/www.lilly.ee");
    countries[countries.length] = new Array("Finland","http:/"+"/www.lilly.fi");
    countries[countries.length] = new Array("France","http:/"+"/www.lilly.fr");
    countries[countries.length] = new Array("Germany","http:/"+"/www.lilly-pharma.de");
    countries[countries.length] = new Array("Hungary","http:/"+"/www.lilly.hu");
    countries[countries.length] = new Array("India","http:/"+"/www.lillyindia.co.in");
    countries[countries.length] = new Array("Ireland","http:/"+"/www.lilly.ie");
    countries[countries.length] = new Array("Italy","http:/"+"/www.lilly.it");
    countries[countries.length] = new Array("Japan","http:/"+"/www.lilly.co.jp");
    countries[countries.length] = new Array("Korea","http:/"+"/www.lillykorea.co.kr");
    countries[countries.length] = new Array("Mexico","http:/"+"/www.lilly.com.mx");
    countries[countries.length] = new Array("Netherlands","http:/"+"/www.lilly.nl");
    countries[countries.length] = new Array("Norway","http:/"+"/www.lilly.no");
    countries[countries.length] = new Array("Singapore","http:/"+"/www.lilly.com.sg");
    countries[countries.length] = new Array("South Africa","http:/"+"/www.lilly.co.za");
    countries[countries.length] = new Array("Spain","http:/"+"/www.lilly.es");
    countries[countries.length] = new Array("Sweden","http:/"+"/www.lilly.se");
    countries[countries.length] = new Array("Switzerland","http:/"+"/www.lilly.ch");
    countries[countries.length] = new Array("Taiwan","http:/"+"/www.lilly.com.tw");
    countries[countries.length] = new Array("Turkey","http://www.lilly.com.tr/");
    countries[countries.length] = new Array("United Kingdom","http:/"+"/www.lilly.co.uk");

/*******************************************/

    var buildHTML = '<select name="FormsComboBox1" id=FormsComboBox1 onchange="deportMeTo(this);">\n';
    buildHTML += '<option selected>- Lilly Worldwide -</option>';
    for(var i=0;i<countries.length;i++)
    {
        buildHTML += "   <option value='"+countries[i][1]+"'>"+countries[i][0]+"</option>\n";
    }    
    document.writeln(buildHTML + "</select>");
    
}

function deportMeTo(where)
{
    top.location.href = where.options[where.selectedIndex].value;
    where.options.selectedIndex = 0;
}

buildCountryDropdown();
