function go_rtn(){

	if (document.form1.country[document.form1.country.selectedIndex].value == "26"){
		window.open("http://www.samsung.com/au/start-program");
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "25"){
		window.open("http://www.samsung.com/ca_fr/star");
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "24"){
		window.open("http://www.samsung.com/ca/star");
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "23"){
		window.open("http://www.samsung.com/starus");
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "22"){
		window.open("/green/intro.asp");
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "21"){
		document.location.href="/Green_Campaign/STAR_UnitedKingdom/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "20"){
		document.location.href="/Green_Campaign/STAR_Switzerland(Italian)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "19"){
		document.location.href="/Green_Campaign/STAR_Switzerland(German)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "18"){
		document.location.href="/Green_Campaign/STAR_Switzerland(French)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "17"){
		document.location.href="/Green_Campaign/STAR_Sweden/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "16"){
		document.location.href="/Green_Campaign/STAR_Spain/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "15"){
		document.location.href="/Green_Campaign/STAR_Portugal/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "14"){
		document.location.href="/Green_Campaign/STAR_Norway/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "13"){
		document.location.href="/Green_Campaign/STAR_Netherlands/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "12"){
		document.location.href="/Green_Campaign/STAR_Luxembourg(German)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "11"){
		document.location.href="/Green_Campaign/STAR_Luxembourg(French)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "10"){
		document.location.href="/Green_Campaign/STAR_Italy/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "09"){
		document.location.href="/Green_Campaign/STAR_Ireland/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "08"){
		document.location.href="/Green_Campaign/STAR_Deutsch/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "07"){
		document.location.href="/Green_Campaign/STAR_France/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "06"){
		document.location.href="/Green_Campaign/STAR_Finland/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "05"){
		document.location.href="/Green_Campaign/STAR_Denmark/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "04"){
		document.location.href="/Green_Campaign/STAR_Belgium(Dutch)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "03"){
		document.location.href="/Green_Campaign/STAR_Belgium(German)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "02"){
		document.location.href="/Green_Campaign/STAR_Belgium(French)/main.htm";
	}

	if (document.form1.country[document.form1.country.selectedIndex].value == "01"){
		document.location.href="/Green_Campaign/STAR_Austria/main.htm";
	}
}

function addCountry(){

	var countryValue = ["26","01","04","02","03","24",	"25","05","06","07","08","09","10","22","11","12","13","14","15","16","17","18","19","20","21","23"];

	var countryText = ["Australia","Austria","Belgium(Dutch)","Belgium(French)","Belgium(German)","Canada(English)","Canada(French)","Denmark","Finland","France","Germany","Ireland","Italy","Korea","Luxembourg(French)","Luxembourg(German)","Netherlands","Norway","Portugal","Spain","Sweden","Switzerland(French)","Switzerland(German)","Switzerland(Italian)","United Kingdom","United States"];

	for(i=0; i < countryValue.length; i++){
		var countryOption = document.createElement("OPTION");

		countryOption.value = countryValue[i];
		countryOption.text = countryText[i];

		document.getElementById("country").options[i+2] = countryOption;
	}
}
