// JavaScript Document
function map() {
	
	var xmlHttp = createObject();
		
	//alert('in');
	document.getElementById('search_show_box').innerHTML ='<div style="padding:50px 0 0 0; text-align:center;"><img src="images/ajax-loader.gif" height="16" /></div>';
	xmlHttp.open("GET","ajax/php/london.php");
	xmlHttp.send(null);
	
	xmlHttp.onreadystatechange=function() {
		if(xmlHttp.readyState==4) {
			
			document.getElementById('search_show_box').innerHTML = xmlHttp.responseText;
		}
	
	}
	
}

function area(i) {
	
	var xmlHttp = createObject();
		
	
	document.getElementById('search_show_box').innerHTML ='<div style="padding:50px 0 0 0; text-align:center;"><img src="images/ajax-loader.gif" height="16" /></div>';
	xmlHttp.open("GET","ajax/php/area.php?region="+i);
	xmlHttp.send(null);
	
	xmlHttp.onreadystatechange=function() {
		if(xmlHttp.readyState==4) {
			
			document.getElementById('search_show_box').innerHTML = xmlHttp.responseText;
		}
	
	}
	
}
