
	
	
function homescript(sname)
	{
		//alert(sname);
		var getn="document.getElementById('"+sname+"');";
		var len=getn.length;
		
		if(sname=='centres')
			{
				var selinc=document.getElementById('centres').selectedIndex;
				window.location.href=document.getElementById('centres').options[selinc].value;
			}
		else if(sname=='borough')
			{
				var selina=document.getElementById('borough').selectedIndex;
				window.location.href=document.getElementById('borough').options[selina].value;
			}
		return true;
	}
	
	window.onload = function() {
        homescript(sname);
    }