// JavaScript Document
function SendMail(){
	var hata = 0;
	if ($('ad').value.length <4 ){
		alert('Lütfen Adınızı Soyadınızı Yazınız');
		$('ad').focus()
		$('ad').style.background='#fbffba';		
		 hata +=1
		return false
	}	
	if ($('mail').value.length <7){
		alert('Lütfen email adresinizi giriniz');
		$('mail').focus()
		$('mail').style.background='#fbffba';
		 hata +=1
		return false
	}	
	if ($('konu').value.length <3){
		alert('Lütfen konuyu giriniz');
		$('konu').focus()
		$('konu').style.background='#fbffba';
		 hata +=1
		return false
	}	
	if ($('mesaj').value.length <15){
		alert('Lütfen mesajınızı giriniz');
		$('mesaj').focus()
		$('mesaj').style.background='#fbffba';
		 hata +=1		
		return false
	}	
		if ($('tlf').value.length <7){
		alert('Lütfen telefon giriniz');
		$('tlf').focus()
		$('tlf').style.background='#fbffba';
		 hata +=1		
		return false
	}	
			if ($('gsm').value.length <7){
		alert('Lütfen GSM giriniz');
		$('gsm').focus()
		$('gsm').style.background='#fbffba';
		 hata +=1		
		return false
	}
	if(hata == 0 ){
		$('ilet-form').style.display='none';
		ajax('iletisimsend.asp?ad='+$('ad').value+'&mail='+$('mail').value+'&konu='+$('konu').value+'&mesaj='+$('mesaj').value+'&tlf='+$('tlf').value+'&gsm='+$('gsm').value,'ilet','0');
	}	
}

