function checkit(form)
{
if (form.Name.value == '') {alert('Вы забыли указать Имя.!'); form.Name.focus(); return false;};
if (form.Comment.value == '') {alert('Вы забыли написать Мнение!'); form.Comment.focus(); return false;};
};
$(document).ready(function(){
if ($('#comment').length==1)
{
var pp=location.pathname;
pp=pp.substring(1,pp.length);
$('#comment').html('Оставить комментарий
');
}
});