function av_country_go(form){
  if (document.getElementById("select1").value != "none") {
    location = form.select1.options[form.select1.selectedIndex].value
  }
}

function av_country_selectbox(form){

    var int_tmpl = 'aveda.com/templates/door/international.tmpl';
    var us_tmpl  = 'aveda.com/templates/door/usa.tmpl';
    
    var av_countries = [
    'Choose A Country','none',
    'Aruba',int_tmpl + "?COUNTRY=ARUBA",
    'Australia',int_tmpl + '?COUNTRY=AUSTRALIA',
    'Austria','www.aveda.de',
    'Belgium',int_tmpl + '?COUNTRY=BELGIUM',
    'Canada',us_tmpl + '?COUNTRY=CANADA',
    'Denmark',int_tmpl + '?COUNTRY=DENMARK',
    'France',int_tmpl + '?COUNTRY=FRANCE',
    'Germany','www.aveda.de',
    'Hong Kong',int_tmpl + '?COUNTRY=HONG+KONG',
    'Iceland',int_tmpl + '?COUNTRY=ICELAND',
    'Ireland','www.aveda.co.uk',
    'Italy','www.aveda.com/italia',
    'Japan','www.aveda.co.jp',
    'S. Korea','www.avedakorea.com/home.asp',
    'Malaysia',int_tmpl + '?COUNTRY=MALAYSIA',
    'Netherlands',int_tmpl + '?COUNTRY=THE%20NETHERLANDS',
    'New Zealand',int_tmpl + '?COUNTRY=NEW+ZEALAND',
    'Norway',int_tmpl + '?COUNTRY=NORWAY',
    'Puerto Rico',us_tmpl + '?COUNTRY=PUERTO+RICO',
    'Spain','www.aveda.es',
    'Switzerland','www.aveda.de',
    'Taiwan',int_tmpl + '?COUNTRY=TAIWAN',
    'Trinidad,Tobago',int_tmpl + '?COUNTRY=TRINIDAD,TOBAGO',
    'United Kingdom','www.aveda.co.uk',
    'United States','dev.aveda.com/home.tmpl?stayhere=OK'
    ];

    document.write('<select id="select1" style="width:140px; font-size:9px;" onchange="av_country_go(this.form)">');
  for (i=0; i < av_countries.length; i+=2) {
    linkvalue = av_countries[i+1];
    cv = av_countries[i];
    document.write('<option value="http://' + linkvalue + '">' + cv + '');
  }

  document.write('</select>');
}

