function gonder() {
	


	
	
	
    if (document.commentform.author.value=='') { 
    	
    	alert("Lütfen isim alanını doldurunuz."); 
    	document.commentform.author.focus();
    	return false; 
    }
    
	var str=document.commentform.email.value;
    var pattern=/^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\.([a-zA-Z])+([a-zA-Z])+/;
    
    if (!pattern.test(str)) { 
    	
    	alert("Lütfen doğru bir email adresi giriniz. Adresiniz gizli kalacaktır."); 
    	document.commentform.email.focus();
    	return false; 
    }
    

    if (document.commentform.comment.value=='') { 
    	
    	alert("Lütfen yorum alanını doldurunuz."); 
    	document.commentform.comment.focus();
    	return false; 
    }

    
    
    
JXP(1, 'sonuc', '/yorumla.php', 'author='+document.commentform.author.value+'&email='+document.commentform.email.value+'&comment='+document.commentform.comment.value+'&cid='+document.commentform.cid.value);
return false;
}
