<!-- *************İletişim****************** -->
function iletisim(theForm)
 {
	if ((theForm.emaili.value == "") || (theForm.emaili.value.indexOf('@',0) == -1)) 
	{
		alert("Email adresiniz geçersiz");
		theForm.emaili.focus();
		theForm.emaili.select();
		return false;
	}	

	if (theForm.konu2.value == "" )
	{
		alert("Lütfen Mesaj Konusunu Yazınız.");
		theForm.konu2.focus();
		return(false);
  	}
	if (theForm.mesaj.value == "" )
	{
		alert("Lütfen Mesajınızı Yazınız.");
		theForm.mesaj.focus();
		return(false);
  	}
	if (theForm.kod.value == "" )
	{
		alert("Lütfen Güvenlik Kodunu Giriniz.");
		theForm.kod.focus();
		return(false);
  	}

}