To get this to display in your header, you'll need to replace the location of the "calling of the template" in your 'global.php' script.
This bit :
PHP Code:
// parse tHE DSS, Search The Internet template (global)
eval("\$search_the_internet = \"".gettemplate('search_the_internet')."\";");
... should be place ABOVE this (in the 'global.php') :
PHP Code:
eval("\$headinclude = \"".gettemplate('headinclude')."\";");
eval("\$header .= \"".gettemplate('header')."\";");
It should work then.