<!-- *************Çevirme****************** -->
function cevir(theForm)
 {
	if (theForm.metnim.value == "" )
	{
		alert("Bos Alan !");
		theForm.metnim.focus();
		return(false);
  	}
}
<!-- *************İletişim****************** -->
function iletisim(theForm)
 {
	if ((theForm.emaili.value == "") || (theForm.emaili.value.indexOf('@',0) == -1)) 
	{
		alert("Email adresiniz gecersiz");
		theForm.emaili.focus();
		theForm.emaili.select();
		return false;
	}	

	if (theForm.konu2.value == "" )
	{
		alert("Lutfen Mesaj Konusunu Yazınız.");
		theForm.konu2.focus();
		return(false);
  	}
	if (theForm.mesaj.value == "" )
	{
		alert("Lütfen Mesajinizi Yaziniz.");
		theForm.mesaj.focus();
		return(false);
  	}
	if (theForm.kod.value == "" )
	{
		alert("Lutfen Güvenlik Kodunu Giriniz.");
		theForm.kod.focus();
		return(false);
  	}

}
function iletisim2(theForm)
 {
	if ((theForm.emaili.value == "") || (theForm.emaili.value.indexOf('@',0) == -1)) 
	{
		alert("Email adresiniz gecersiz");
		theForm.emaili.focus();
		theForm.emaili.select();
		return false;
	}	
    if (theForm.mesaj.value == "" )
	{
		alert("Lütfen Mesajinizi Yaziniz.");
		theForm.mesaj.focus();
		return(false);
  	}
	if (theForm.kod.value == "" )
	{
		alert("Lutfen Güvenlik Kodunu Giriniz.");
		theForm.kod.focus();
		return(false);
  	}

}