/**
 * 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("Alemania","http:/"+"/www.lilly-pharma.de");
    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("Bélgica","http:/"+"/www.lilly.be");
    countries[countries.length] = new Array("Brasil","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("Corea","http:/"+"/www.lillykorea.co.kr");
    countries[countries.length] = new Array("Dinamarca","http:/"+"/www.eli-lilly.dk");
    countries[countries.length] = new Array("España","http:/"+"/www.lilly.es");
    countries[countries.length] = new Array("Estonia","http:/"+"/www.lilly.ee");
    countries[countries.length] = new Array("Finlandia","http:/"+"/www.lilly.fi");
    countries[countries.length] = new Array("Francia","http:/"+"/www.lilly.fr");
    countries[countries.length] = new Array("Holanda","http:/"+"/www.lilly.nl");
	countries[countries.length] = new Array("Hungría","http:/"+"/www.lilly.hu");
    countries[countries.length] = new Array("India","http:/"+"/www.lillyindia.co.in");
    countries[countries.length] = new Array("Irlandia","http:/"+"/www.lilly.ie");
    countries[countries.length] = new Array("Italia","http:/"+"/www.lilly.it");
    countries[countries.length] = new Array("Japón","http:/"+"/www.lilly.co.jp");
    countries[countries.length] = new Array("México","http:/"+"/www.lilly.com.mx");
    countries[countries.length] = new Array("Noruega","http:/"+"/www.lilly.no");
	countries[countries.length] = new Array("Reino Unido","http:/"+"/www.lilly.co.uk");
    countries[countries.length] = new Array("Singapur","http:/"+"/www.lilly.com.sg");
    countries[countries.length] = new Array("Sudáfrica","http:/"+"/www.lilly.co.za");
    countries[countries.length] = new Array("Suecia","http:/"+"/www.lilly.se");
    countries[countries.length] = new Array("Suiza","http:/"+"/www.lilly.ch");
    countries[countries.length] = new Array("Taiwan","http:/"+"/www.lilly.com.tw");
	countries[countries.length] = new Array("Turquía","http:/"+"/www.lilly.com.tk");

/*******************************************/

    var buildHTML = '<select name="FormsComboBox1" id=FormsComboBox1 onchange="deportMeTo(this);">\n';
    buildHTML += '<option selected>- Lilly en el mundo -</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();
