
         	function degerKontrol() 
		{ 
            var TextBox1 = document.aspnetForm.ctl00_ContentPlaceHolder1_kad_txt.value;
            if(TextBox1.length == 0){
              alert("Kullanıcı Kodu Giriniz.")
			  return false;
            }
           var TextBox2 = document.aspnetForm.ctl00_ContentPlaceHolder1_pwd_txt.value;
            if(TextBox2.length == 0){
              alert("Şifre Giriniz.")
			  return false;
            }
            document.aspnetForm.ctl00_ContentPlaceHolder1_hdnbox.value = "yes";
        }
function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()}
   
   function setFormat(txtObj) 
{ 

var id = txtObj.id;
var inp = document.getElementById(id); 
var x = inp.value; 
inp.value = x.toUpperCase();
}
