function search_word(theForm) {
            if (theForm.word.value=='') alert('Заполните поле поиска');
            else { 
                theForm.action = 'http://www.shoppingcenter.ru/catalog/index_category.php';
                theForm.target = '_top';
                theForm.submit();
            }
        }
