need ('table'); function isFocused ($name) { global $currPage; return (strToLower ($name) == strToLower ($currPage)) ? TRUE : FALSE; } function iconLink ($img, $desc, $name, $url) { $cls = 'class="icon" '; if (isFocused ($name)) { $cls = 'class="focusedIcon" '; } echo '' .'' .''; } function iconBar () { iconLink ('anvil.png', 'SourceForge', 'nil', 'http://sourceforge.net/projects/quake/'); iconLink ('home.png', 'Home Page', 'home', '/'); iconLink ('bugs.png', 'Bug Tracker', 'bugs', '/bugs/'); // iconLink ('support.png','Support', 'support', 'http://sourceforge.net/support/?group_id=882'); // iconLink ('patch.png', 'Patches', 'patches', 'http://sourceforge.net/patch/?group_id=882'); iconLink ('mail.png', 'Mailing Lists','lists', '/lists.php'); // iconLink ('tasks.png', 'Tasks', 'tasks', 'http://sourceforge.net/pm/?group_id=882'); // iconLink ('survey.png', 'Surveys', 'surveys', 'http://sourceforge.net/survey/?group_id=882'); iconLink ('news.png', 'News Archives','news', '/old_news.php'); iconLink ('cvs.png', 'Subversion', 'cvs', 'http://quake.svn.sourceforge.net/viewvc/quake/'); iconLink ('download.png','Downloads', 'files', '/files.php'); } ?>