function gonder( islem, adres ) {
	$( "#gonder-btn" ).attr( 'disabled', true );
	$.post( adres + '.php?islem=' + islem, 
		$( '#' + islem ).serialize(),
		function ( cevap ) {
			with ( cevap )
			if ( cevap.url ){
				document.location.href = cevap.url;
			}else{
				$( '.' + cevap.konum ).show();
				$( '.' + cevap.konum ).html( cevap.mesaj );
				$( '#' + "gonder-btn" ).removeAttr( 'disabled' );
			}
		},
		"json"
	);
}

function dil(dil){
	$.post( '/ajax/proje/genel.php?islem=dil',
		"dil=" + dil,
		function( cevap ) {
			with ( cevap )
			document.location.href = "/";
		},
		"json"
	);
}


