var nSerial = 0;

function TDo(ab,k8,no,ga,ktd,al,dd,st,en) {
	this.code = nSerial++;
	this.abbr = '' || ab;
	this.kt080 = k8;
	this.sno = no;
	this.gana = ga;
	this.ktdom = ktd;
	this.alpha = al;
	this.ddd = dd;
	this.state = st;
	this.state_ddd = st+"("+dd+")";
	this.ENG = en;
	this.eng = en.toLowerCase();
	this.Eng = this.ENG.substring(0,1) + this.eng.substring(1);
};

function installSelectBox_ko(list,box,ab,bAll,bDDD)
{
	var nSelected = 0;
	box.options.length = list.length;
	for (var i=0; i<list.length; i++ ) {
		if (bDDD)
			box.options[i].text = list[i].state_ddd;
		else
			box.options[i].text = list[i].state;
		if ( ab && nSelected == 0 )
			if (list[i].abbr == ab )
				nSelected = i; 
	}
	if ( bAll ) box.options[0].text = "Àü±¹";
	box.selectedIndex = nSelected;
}

aKorea = [   
new TDo("Àü±¹","ÀüÃ¼","00","0", "0", "",  "", "¼±ÅÃÇÏ¼¼¿ä","ALL"),                    
//      abbr ko080 sno gana ktdom alpha ddd  sate                                           
new TDo("¼­¿ï","0","01","9", "19","I","02","¼­¿ïÆ¯º°½Ã",	"SEOUL"),          
new TDo("ºÎ»ê","2","05","8", "18","H","051","ºÎ»ê±¤¿ª½Ã","PUSAN"),                
new TDo("´ë±¸","5","03","6", "16","F","053","´ë±¸±¤¿ª½Ã","TAEGU"),                
new TDo("ÀÎÃµ","1","06","11","21","K","032","ÀÎÃµ±¤¿ª½Ã","INCHON"),                
new TDo("´ëÀü","6","04","7", "17","G","042","´ëÀü±¤¿ª½Ã","DAEJUN"),               
new TDo("±¤ÁÖ","3","02","5", "15","E","062","±¤ÁÖ±¤¿ª½Ã","KWANGJU"),              
new TDo("¿ï»ê","4","07","10","20","J","052","¿ï»ê±¤¿ª½Ã","ULSAN"),                 
new TDo("°­¿ø","14","08","1", "11","A","033","°­¿øµµ",	"KANGWON"),                
new TDo("°æ±â","13","09","2", "12","B","031","°æ±âµµ",	"KYUNGGI"),                
new TDo("°æ³²","12","10","3", "13","C","055","°æ»ó³²µµ",	"KYONGNAM"),       
new TDo("°æºÏ","11","11","4", "14","D","054","°æ»óºÏµµ",	"KYONGBUK"),       
new TDo("Àü³²","10","12","12","22","L","061","Àü¶ó³²µµ",	"CHONNAM"),                
new TDo("ÀüºÏ","9","13","13","23","M","063","Àü¶óºÏµµ",	"CHONBUK"),                
new TDo("Ãæ³²","8","15","15","25","O","041","ÃæÃ»³²µµ",	"CHUNGNAM"),               
new TDo("ÃæºÏ","7","16","16","26","P","043","ÃæÃ»ºÏµµ",	"CHUNGBUK"),               
new TDo("Á¦ÁÖ","15","14","14","24","N","064","Á¦ÁÖµµ",	"CHEJU")                   
];                                                                         

