My solution would be to edit your template file
\includes\templates\custom\templates\tpl_index_default.php
and paste in the code at line 24 just below the customer greeting;
PHP Code:
<?php
// BOF Advanced Search MOD
$temp_current_page_base=$current_page_base;
$current_page_base='advanced_search';
require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php'));
$current_page_base=$temp_current_page_base;
require($template->get_template_dir('tpl_advanced_search_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_advanced_search_default.php');
// EOF Advanced Search MOD
?>