// JavaScript Document

function alanlari_kontrol_et()
{
	var hata_user="Lütfen kullanıcı adınızı girin!";
	var hata_pass="Lütfen parolanızı girin!";
	

	if(trim(document.getElementById("kullanici_adi").value)=="" || trim(document.getElementById("kullanici_adi").value)=="Kullanıcı Adı")
	{
		
		document.getElementById("hata").innerHTML=hata_user;
		document.getElementById("kullanici_adi").focus();
		return false;
		
	}
	else if(trim(document.getElementById("parola").value)=="" || trim(document.getElementById("parola").value)=="Parola")
	{
		document.getElementById("hata").innerHTML=hata_pass;
		document.getElementById("parola").focus();
		return false;
	}
	else
	{
		document.getElementById('giris_formu').submit();
	}
}

function enter(e)
{
	var keynum;
	var keychar;
	
	if(window.event) // IE
	{
		keynum = e.keyCode;
	}
	else if(e.which) // Netscape/Firefox/Opera
	{
		keynum = e.which;
	}
	
	if(keynum==13)
	{
		alanlari_kontrol_et();
	}
}

function cikis_kontrol()
{
	var cevap=confirm("Çıkmak için Tamam'ı işlemi iptal etmel için İptal'i tıklayın!?");
	
	if(cevap)
	{
		document.getElementById('cikis_formu').submit();
		return true;
	}
	else
	{
		return false;
	}	
}

