var urlindex = "http://www.etag.su/ajcity.php?action=";
var xmlhttpindex;
	
function getcountryObject(action,getid,valuehref) {
	if(getid=="city"){
		document.getElementById('city').innerHTML = '';
		document.getElementById('rayon').innerHTML = '';
	}
	if(getid=="rayon"){
		document.getElementById('rayon').innerHTML = '';
	}
	document.getElementById(getid).innerHTML = '<img src=http://www.etag.su/imgsite/progress.gif align=absmiddle>';
	if (window.XMLHttpRequest) {
		xmlhttpindex = new XMLHttpRequest();
		xmlhttpindex.onreadystatechange = handleHttpResponseIndex;
		xmlhttpindex.open("GET", urlindex + escape(action) + '&value=' + escape(valuehref), true);
		xmlhttpindex.send(null);
	}
	
	else if (window.ActiveXObject) {
		xmlhttpindex = new ActiveXObject("Microsoft.XMLHTTP");
		if (xmlhttpindex) {
			xmlhttpindex.onreadystatechange = handleHttpResponseIndex;
		xmlhttpindex.open("GET", urlindex + escape(action) + '&value=' + escape(valuehref), true);
			xmlhttpindex.send();
		}
	}
		function handleHttpResponseIndex() {
			
			if (xmlhttpindex.readyState == 4) {
				  document.getElementById(getid).innerHTML = xmlhttpindex.responseText;
			  }
		
		}
	

}

function changefocusarea(lovearea){
	var lovear = document.getElementById(lovearea);
	lovear.style.height = '250px';
}
function getnewimg(newimg){
	var newimg;
	var newhtml = '<img src=http://www.etag.su/img650/';
	var newhtml2 = ' align=absmiddle border=0>';
	newnew = newhtml+newimg+newhtml2;
	document.getElementById('newimgs').innerHTML = newnew;
}

