// JavaScript Document
function COTOCI2(){
	this.majorVersion = "0";
	this.minorVersion = "1";
	this.releaseDate = "2006-03-12";
};//

COTOCI2.prototype.sc = function(){//select country
	var co = cotoci2.ge("city"), ci = cotoci2.ge("ilce");
	
	rov = function(){
		for(var o=ci.options.length-1;o>-1;o--){
			ci.options[o] = null;
		}
	};
	
	scr = function(){
		var r = scr.arguments[0].responseXML.documentElement;
		var t = r.getElementsByTagName("ilce");
		
		rov();
		
		if(t.length==0){
			ci.options[0] = new Option("İlçe bulunamadı.");
		}
		
		for(var i=0;i<t.length;i++){
			var nv = new Option(t[i].firstChild.nodeValue,t[i].firstChild.nodeValue);
			ci.options[i] = nv;
		}
	};
	
	rov();
	ci.options[0] = new Option("Yükleniyor...");

	cotoci2.sg('getIlces.php?i='+escape(co.value),scr);
};//



COTOCI2.prototype.start = function(){
};//1.0 - 2

var cotoci2 = new COTOCI2();
