function ekle(){ 
var sc = $("input[@type=text]").serialize();
$('#ekleniyor').html('<center><img src="resimler/loadingAnimation.gif"></center>');
$.ajax({
	type: "POST",
	url: "yaziekledata.php",
	data: sc,
	success: function(msg){
	if (msg=="ok")
		{
		$('#ekleniyor').html("<font color='blue'>Teşekkürler, uygulama linkiniz gönderildi. Kontrol edildikten sonra size dönülecektir.</font>");
		setTimeout("window.location = 'index.php';",1000);
		}
	else
		{$('#ekleniyor').html( msg );}
   }
});
}
