		function ajaxKayit(){
		$('#sonuc').html('<img src="/resimler/content/loading.gif" alt="" />&nbsp;&nbsp;&nbsp;Formunuz işleniyor...');
			$.ajax({
				type:'POST',
				url:'/yorumkaydet.asp',
				data:$('#formcevap').serialize(),
				success:
					 function(ajaxCevap){
					$('#sonuc').html(ajaxCevap);
					}
			});
		}
