
function maillist(){
var input1 = $("#isim").serialize();
var input2 = $("#eposta").serialize();
var sc = input1+"&"+input2;
$('#ekleniyor').html('<center><img src="images/yukleniyor.gif"></center>');
$.ajax({
	type: "POST",
	url: "maillist_kontrol.php",
	data: sc,
	success: function(msg){
	if (msg=="ok")
		{
        
		$('#ekleniyor').html("Ekleme Başarılı!");
		setTimeout($("#ekleniyor").animate({ opacity: 0 }, 500) ,1000);
        
		}
	else
		{$('#ekleniyor').html( msg );}
   }
});}

function giris1(){
var input1 = $("#kullanici_adi").serialize();
var input2 = $("#sifre").serialize();
var input3 = $("#guvenlik_kodu").serialize();
var sc = input1+"&"+input2+"&"+input3;
$('#ekleniyor').html('<center><img src="../images/yukleniyor.gif"></center>');
$.ajax({
	type: "POST",
	url: "giris_kontrol.php",
	data: sc,
	success: function(msg){
	if (msg=="ok")
		{
		$('#ekleniyor').html("Giris Başarılı!");
		setTimeout("window.location = 'index.php';",1000);
		}
	else
		{$('#ekleniyor').html( msg );}
   }
});}

function giris(){
var input1 = $('#txtKullaniciAdi1').serialize();
var input2 = $('#txtSifre1').serialize();
var sc = input1+"&"+input2;
$('#giris_sonuc').html('<center><img src="./images/yukleniyor.gif"></center>');
$.ajax({
	type: "POST",
	url: "./inc/giris_kontrol.php",
	data: sc,
	success: function(msg){
	if (msg=="ok")
		{
		$('#giris_sonuc').html("Giris Başarılı!");
		setTimeout("window.location = 'index.php';",1000);
		}
	else
		{
		$("#giris_sonuc")
		.animate({ opacity: 0 }, 500).animate({ opacity: 1 }, 500)
		.animate({ opacity: 0 }, 500).animate({ opacity: 1 }, 500);
		$('#giris_sonuc').html( msg );}
   }
});}

function iletisim_gonder(elementid1,elementid2,elementid3){
var input1 = $(":input[@type=text]").serialize();
var input2 = $(":input[@type=hidden]").serialize();
var input3 = $(":textarea").serialize();
var sc = input1+"&"+input2+"&"+input3;
$('#ekleniyor').html('<center><img src="./images/yukleniyor.gif"></center>');
$.ajax({
	type: "POST",
	url: "iletisim_kontrol.php",
	data: sc,
	success: function(msg){
	if (msg=="ok")
		{	
		$('#olumlu_sonuc').html("<div style='width:95%; background:#bde0b8; border:1px dashed #396c21; padding:5px; font-size: 11px;color: #396c21;font-weight:bold;'>İletişim formunu kullandığınız için teşekkür ederiz. Bilgiler bize ulaşmıştır. 4dk-10saat arasında yanıtlanacaktır.</div><br />");
		
		var el1 = document.getElementById(elementid1);
		var el2 = document.getElementById(elementid2);
		var el3 = document.getElementById(elementid3);
		el1.style.display = (el1.style.display =="none") ? "none" : "none";
		el2.style.display = (el2.style.display =="none") ? "none" : "none"; 
		el3.style.display = (el3.style.display =="none") ? "none" : "none"; 
		
		}
	else
		{$('#ekleniyor').html( msg );}
   }
});}


