| Сообщение от danik.js   | 
	| А где у тебя функция checkNULL ? Читай документацию по своему плагину.
 | 
	
<script type="text/javascript">
        function checkNULL()
        {
            if(document.forms.add_item.title_item.value == "")
            {
                document.getElementById('title_null').innerHTML = "Заполните название";
                document.getElementById('title_null').style.color = "red";
                document.forms.add_item.title_item.focus();
                document.forms.add_item.title_item.borderColor = "red";
                
                return false;
            }
            else if(document.forms.add_item.link_item.value == "")
            {
                document.getElementById('url_null').innerHTML = "Заполните ссылку";
                document.getElementById('url_null').style.color = "red";
                document.forms.add_item.link_item.focus();
                document.forms.add_item.link_item.borderColor = "red";
                
                return false;
            }
            else if(document.forms.add_item.keywords.value == "")
            {
                document.getElementById('keywords_null').innerHTML = "Заполните keywords";
                document.getElementById('keywords_null').style.color = "red";
                document.forms.add_item.keywords.focus();
                document.forms.add_item.keywords.borderColor = "red";
                
                return false;
            }
            else if(document.forms.add_item.description.value == "")
            {
                document.getElementById('description_null').innerHTML = "Заполните description";
                document.getElementById('description_null').style.color = "red";
                document.forms.add_item.description.focus();
                document.forms.add_item.description.borderColor = "red";
                
                return false;
            }
            else
            {
                document.getElementById('title_null').innerHTML = "";
                document.forms.add_item.title_item.borderColor = "";
                document.getElementById('url_null').innerHTML = "";
                document.forms.add_item.link_item.borderColor = "";
                document.getElementById('keywords_null').innerHTML = "";
                document.forms.add_item.keywords.borderColor = "";
                document.getElementById('description_null').innerHTML = "";
                document.forms.add_item.description.borderColor = "";
                
                confirm("Добавить элемент меню?");
            }
        }
        </script>
Написал вначале вывод передаваемых данных
print_r($_REQUEST);
Выводит
Array ( [title_item] => Главная [link_item] => index.php [parent_item] => none [keywords] => 123 [description] => 1234556 [add_item] => Добавить ) Файл index.php уже существует!
не вижу textarea вообще!(