/*
 *  file:       helper.js
 *  purpose:    js helper functions for form handling...
 *
 *  avtor:      Yashchenko Alexey Vasilievich
 *
 *  (C)         2004 Multisoft(R) Company
 */


function find_check( obj  ) {

	if ( document.getElementById(obj).value ) return true;
	alert("Введите слово для поиска");	
	return false;
};
