function gonder(data){

	if(data == 'iletisimkur'){
		var isim = document.iletisimformu.isim.value;
		var email = document.iletisimformu.email.value;
		var konu = document.iletisimformu.konu.value;
		var mesaj = document.iletisimformu.mesaj.value;
		document.getElementById("sendform").style.display = 'none';
		document.getElementById("sendresult").style.display = '';
		JXP(0, "sendresult", "gonder.php", "isim="+isim+"&email="+email+"&konu="+konu+"&mesaj="+mesaj);
	}
	else {
		alert("Ne bok yiyosan anlamadim gitti");
	}

}

function goster(){
		document.getElementById("sendform").style.display = '';
		document.getElementById("sendresult").style.display = 'none';
}