I still canīt download actual version, got only an empty file

anyway I done my homework, was trying to do that on HandleKeyup function, but it should be on getSuggestions function, like that
search.php
function getSuggestions(keyword)
{
if(document.getElementById("keyword").value.length > 5) {
/* continue if keyword isn't null and the last pressed key wasn't up or
....
and a bracket downthere before function end bracket ( } )
another changes done to become more Oscommerce standard compatable, to get ONLY ACTIVE products (to avoid getting some unactive, and samples that I have on admin side but not on website) and to search within the title on suggest.php, around line 14 change to
...
if($keyword != '')
$query = 'SELECT pd.products_name, pd.products_id, pd.language_id, p.products_id, p.products_status ' .
'FROM ' . TABLE_PRODUCTS_DESCRIPTION . ' pd INNER JOIN ' . TABLE_PRODUCTS . ' p ON p.products_id = pd.products_id ' .
'WHERE pd.products_name LIKE "%' . $keyword . '%" and pd.language_id = "'.$languages_id.'" and p.products_status = 1';
// if the keyword is empty build a SQL query that will return no results
...