﻿// JScript File

function clearInputValue(inputBox)
{
	if (inputBox.defaultValue==inputBox.value)
	{
		inputBox.value = "";				
	}
}
function writeInputValue(inputBox, inputDefault)
{
	if (inputBox.value=="")
	{
		inputBox.value = inputDefault;				
	}
}
	
function searchFormAction()
{	
	var str= document.getElementById('ara').value;
	var bstr=str;

	if ((bstr == 'Arama') || (bstr="")){
	    alert('Arama kelimesi yazmalisiniz');
		document.getElementById('ara').focus();
		return false;
	}
	if (str.length <= 2){
	alert("Arama kelimesi en az 3 harfli olmalidir !");
	document.getElementById('ara').focus();
	}
	else{
	//AjaxPush(2,str,0,0,false)
	window.location.href='arama.aspx?txt='+ str;
	}

}


/*	{
	window.location.href='/kulisara.aspx?txt='+ searchStr;
	//return true;
	}
	*/



