				function Disable()
				{
					document.forms[0].txtMilitary.disabled = true;
					document.forms[0].txtMilitary.style.backgroundColor = '#CCCCCF';
				}
				function DisableAll()
				{
					document.forms[0].txtMilitary.disabled = true;
					document.forms[0].txtMilitary.style.backgroundColor = '#CCCCCF';
					document.forms[0].DownMiliSelect.disabled = true;
					document.forms[0].DownMiliSelect.selectedvalue = 3;
				}
				function Enable()
				{
					document.forms[0].txtMilitary.disabled = false;
					document.forms[0].txtMilitary.style.backgroundColor = '#FFFFFF';
					document.forms[0].DownMiliSelect.disabled = false;
				}
				function Initialize()
				{
					document.forms[0].txtMil.disabled = true;
					document.forms[0].txtMil.value = " ";
					document.forms[0].txtMil.style.width = "100px";
					document.forms[0].txtMil.style.border = "0px";
					document.forms[0].txtMil.style.font = "Arial Black";
				}
				function MiliChange(obj)
				{
					var indexx = obj.selectedIndex;
					
					switch(indexx)
					{
						case 0: document.forms[0].txtMil.value = " "; Disable(); break;
						case 1: document.forms[0].txtMil.value = " "; Disable(); break;
						case 2: document.forms[0].txtMil.value = " Muaf Olma Nedeni"; Enable(); break;
						case 3: document.forms[0].txtMil.value = " Tecil Tarihi"; Enable(); break;
						default : document.forms[0].txtMil.value = " "; Disable(); break;
					}
				}
