function checkComment()
{
var error='';
if(this.addcomment.name.value=='')
error="الرجاء كتابة الاسم\n";
if(this.addcomment.title.value=='')
error+="الرجاء التاكد من ادخل عنوان للتعليق\n";
if(this.addcomment.country.value=='')
error+="الرجاء كتابة البلد\n";
if(this.addcomment.comment.value=='')
error+="الرجاء كتابة نص تعليق\n";

if(error=='') this.addcomment.submit();
else alert(error);
}
