/* lenav */
function resimDegis(img_name,img_src) {
	document[img_name].src=img_src;
}

/* lesearch */
function checkEnter(e){ 
	var characterCode;
	if(e && e.which) 
	{ 
		e = e;
		characterCode = e.which; 
	} else
	{
		e = event;
		characterCode = e.keyCode; 
	}
	if(characterCode == 13){
		location.href = '/arama/arama.aspx?keyword=' + document.Form1.aramaText.value;
		return false;
	}
}

/* cleartxt */
function clearTXT(mytxtObj,statu){	
	if(!mytxtObj._defaultValue) {
			mytxtObj._defaultValue = mytxtObj.value;
	}	
	if (statu==1){
		if (mytxtObj.value==''){
			mytxtObj.value=mytxtObj._defaultValue;
		}
	}
	else{
		if (mytxtObj.value == mytxtObj._defaultValue){
			mytxtObj.value = '';
		}
	}
}

/* printpage */
function lePrint() {
	var adresAl = "/yazdir.aspx" + window.location.href.substring(window.location.href.indexOf('?'));
	window.open(adresAl,'print','toolbar=no,titlebar=yes,width=730,height=600,scrollbars')
}

