<!--
 /* 
  * Checks search form for content if empty returns false.
  */

function check_form( search_form ) {
    var data_of_search = search_form.s.value;
         if ( data_of_search === "" ) {
       	     return false;
	 }
    return ture;
}
//-->

