// Written by: Kemal CIZOĞLU
function iformu(){ 
adi 	= $("input[type=text][name=adi]").val();
eposta 	= $("input[type=text][name=eposta]").val();
mesaj	= $('textarea#mesaj').val();
konu 	= $('#konu_').val();
kod 	= $("input[type=text][name=kod]").val();

if(adi == ""){
$("input[type=text][name=adi]").css("border","1px solid red").focus();
}
else if(eposta == ""){
$("input[type=text][name=eposta]").css("border","1px solid red").focus();
}
else if(konu==0){
$("#konu_").css("border","1px solid red").focus();
}
else if(mesaj==""){
$("#mesaj").css("border","1px solid red").focus();
}
else if(kod == ""){
$("input[type=text][name=kod]").css("border","1px solid red").focus();
}
else{
$('#sonucs').fadeIn('slow'); 
$("#sonucs").html('<div id=resim><center><img src="images/yukleniyor.gif"></center></div>'); 
$.ajax({ 
type:'POST', 
url:'icerik/iletisim_gonder_php.php', 
data:$('#iletisim_formu_').serialize(), 
success:function(cevap){ 
    $("#sonucs").html(cevap);
} 
}) 
}
}
	//Text alanlarını limitlemek için
	function textareaLimiter(field, countfield, maxlimit) {
		if (field.value.length > maxlimit) field.value = field.value.substring(0, maxlimit);
		else countfield.value = maxlimit - field.value.length;
	}						

