	
	// Popup Pencere Açmak
	function PencereAc(Sayfa,En,Boy,Ust,Yan) 
	{
		window.open(Sayfa, 'Baslik', "height="+Boy+",width="+En+",top="+Ust+",left="+Yan+",status=yes,toolbar=no,menubar=no,location=no,scrollbars=no");
	}
	
	//İlçe Listele
	function IlceListele() 
	{
		if (document.getElementById('Sehir').value!='')
			{
				PencereAc("EmlakIlceListele.asp?SehirID=" + document.getElementById('Sehir').value + "&Sehir=" + document.getElementById('Sehir')[document.getElementById('Sehir').selectedIndex].text,220,260,100,100);
			}
				else
			{
				alert('Önce İl Seçin');
				document.getElementById('Sehir').focus();
			}	
	return false;
	}
	
	//İlçe Listele
	function SemtListele() 
	{
		if (document.getElementById('Ilce').value!='')
		{
			PencereAc("EmlakSemtListele.asp?IlceID=" + document.getElementById('Ilce').value + "&Ilce=" + document.getElementById('Ilce1').value,220,260,100,100);
		}
		else
		{
			alert('Önce İlçe Seçin');
		}
	return false;
	}	
