function formKontrol(form) {
	var username 		= window.document.getElementById("username");
	var password 		= window.document.getElementById("password");
	var password2		= window.document.getElementById("password2");
	var isim			= window.document.getElementById("isim");
	var eposta			= window.document.getElementById("eposta");
	var eposta2 		= window.document.getElementById("eposta2");
	var sehir 			= window.document.getElementById("sehir");
		
	if(username.value == '') {
	username.style.backgroundColor = "#CC0000";
	return false;
	}
	if(password.value == '') {
	password.style.backgroundColor = "#CC0000";
	return false;
	}
	if(password2.value == '') {
	password2.style.backgroundColor = "#CC0000";
	return false;
	}
	if(isim.value == '') {
	isim.style.backgroundColor = "#CC0000";
	return false;
	}
	if(eposta.value == '') {
	eposta.style.backgroundColor = "#CC0000";
	return false;
	}
	if(eposta2.value == '') {
	eposta2.style.backgroundColor = "#CC0000";
	return false;
	}
	if(sehir.value == '') {
	sehir.style.backgroundColor = "#CC0000";
	return false;
	}
	if(password.value != password2.value) {
	alert('Lütfen iki alana da aynı parolayı giriniz');
	return false;
	}
	if(eposta.value != eposta2.value) {
	alert('Lütfen iki alana da aynı e-postayı giriniz');
	return false;
	}
	 
	else {
	form.submit();
	return true;
	}
	
}
function formKontrol2(form) {
	var password 		= window.document.getElementById("password");
	var password2		= window.document.getElementById("password2");
	var isim			= window.document.getElementById("isim");
	var eposta			= window.document.getElementById("eposta");
	var sehir 			= window.document.getElementById("sehir");
		
	if(password.value == '') {
	password.style.backgroundColor = "#CC0000";
	return false;
	}
	if(password2.value == '') {
	password2.style.backgroundColor = "#CC0000";
	return false;
	}
	if(isim.value == '') {
	isim.style.backgroundColor = "#CC0000";
	return false;
	}
	if(sehir.value == '') {
	sehir.style.backgroundColor = "#CC0000";
	return false;
	}
	if(password.value != password2.value) {
	alert('Lütfen iki alana da aynı parolayı giriniz');
	return false;
	}
	 
	else {
	form.submit();
	return true;
	}
	
}

function formKontrol3(form) {
	var isim			= window.document.getElementById("isim");

	if(isim.value == '') {
	isim.style.backgroundColor = "#CC0000";
	return false;
	}

else {
	form.submit();
	return true;
	}
	
}

function beyazlastir(alan) {
	alan.style.backgroundColor = "#FFFFFF";
}
function kontrol(alan) {
	
	var kaydetbutton = window.document.getElementById("kaydetbutton");
	if(alan.checked) {
		kaydetbutton.disabled=false;
	}
	if(!alan.checked) {
		kaydetbutton.disabled=true;
	}
}
