function AramaKeyDown(e) {
	if (e.keyCode == 13) {
		event.cancelBubble = true;
		event.returnValue = false;
		
		if (document.all.GovdeSagKisim_txtFirmaAra.value != "") {
			document.location = "firmalar.aspx?Q=" + escape(document.all.GovdeSagKisim_txtFirmaAra.value);
		}
	}
}

function AnaSayfaAramaKeyDown(e) {
	if (e.keyCode == 13) {
		event.cancelBubble = true;
		event.returnValue = false;
		
		if (document.all.txtFirmaAra.value != "") {
			document.location = "firmalar.aspx?Q=" + escape(document.all.txtFirmaAra.value);
		}
	}
}