var isie = document.all ? true : false;

var CountryCode = new Array();
var nbCountryCode = 0;

CountryCode[0] = new Array();
CountryCode[0].country = "Please select";
CountryCode[0].code = "";


function CountryCodes(country,code) 
{
		nbCountryCode++;
		CountryCode[nbCountryCode] = new Array();
		CountryCode[nbCountryCode].country = country;
		CountryCode[nbCountryCode].code = code;
}

function SelectCode() {
	document.write("<form name='ctcode'>");
	document.write("<select name='country' class='optbox' onchange=displayit()>");	
	document.write("<option value='0'>Please select</option>");
	for (si=1;si<(nbCountryCode+1);si++) {
		document.write("<option value='"+si+"'>"+CountryCode[si].country+"</option>");
	}
	document.write("</select>");
	document.write("</form>");
}

function displayit()
{
	var theindex = document.ctcode.country[document.ctcode.country.selectedIndex].value
	//window.alert(CountryCode[theindex].country);
	
	if (theindex>0) 
	{
        var sct = ""+CountryCode[theindex].country;
		var scd = ""+CountryCode[theindex].code;
		document.getElementById("result1").innerHTML=""+sct+"";
		document.getElementById("result2").innerHTML=""+scd+"";
	}
}

