/**
 * 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("Argentinien","http:/"+"/www.lilly-argentina.com");
    countries[countries.length] = new Array("Australien","http:/"+"/www.lilly.com.au");
    countries[countries.length] = new Array("Belgien","http:/"+"/www.lilly.be");
    countries[countries.length] = new Array("Brasilien","http:/"+"/www.lilly.com.br");	
    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("Dänemark","http:/"+"/www.eli-lilly.dk");
    countries[countries.length] = new Array("Deutschland","http://www.lilly-pharma.de");	
    countries[countries.length] = new Array("Estland","http:/"+"/www.lilly.ee");
    countries[countries.length] = new Array("Finnland","http:/"+"/www.lilly.fi");
    countries[countries.length] = new Array("Frankreich","http:/"+"/www.lilly.fr");
    countries[countries.length] = new Array("Indien","http:/"+"/www.lillyindia.co.in");
    countries[countries.length] = new Array("Irland","http:/"+"/www.lilly.ie");
    countries[countries.length] = new Array("Italien","http:/"+"/www.lilly.it");
    countries[countries.length] = new Array("Japan","http:/"+"/www.lilly.co.jp");
    countries[countries.length] = new Array("Kanada","http:/"+"/www.lilly.ca");
    countries[countries.length] = new Array("Korea","http:/"+"/www.lilly.co.kr");
    countries[countries.length] = new Array("Mexiko","http:/"+"/www.lilly.com.mx");
    countries[countries.length] = new Array("Niederlande","http:/"+"/www.lilly.nl");
    countries[countries.length] = new Array("Norwegen","http:/"+"/www.lilly.no");
    countries[countries.length] = new Array("Österreich","http:/"+"/www.lilly.at");
    countries[countries.length] = new Array("Singapur","http:/"+"/www.lilly.com.sg");
    countries[countries.length] = new Array("Südafrika","http:/"+"/www.lilly.co.za");
    countries[countries.length] = new Array("Spanien","http:/"+"/www.lilly.es");
    countries[countries.length] = new Array("Schweden","http:/"+"/www.lilly.se");
    countries[countries.length] = new Array("Schweiz","http:/"+"/www.lilly.ch");
    countries[countries.length] = new Array("Taiwan","http:/"+"/www.lilly.com.tw");
    countries[countries.length] = new Array("Türkei","http:/"+"/www.lilly.be/Nitro/tur_site/tur_home.jsp?page=1790");
    countries[countries.length] = new Array("Ungarn","http:/"+"/www.lilly.hu");
    countries[countries.length] = new Array("USA","http:/"+"/www.lilly.com");
    countries[countries.length] = new Array("Vereinigtes Königreich","http:/"+"/www.lilly.co.uk");	

/*******************************************/

    var buildHTML = '<select name="FormsComboBox1" id=FormsComboBox1 onchange="deportMeTo(this);">\n';
    buildHTML += '<option selected>- Lilly Weltweit -</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();
