THIS_SCRIPT is a variable that is defined on the top of most pages. Open the forumdisplay.php page and you'll see:
PHP Code:
define('THIS_SCRIPT', 'forumdisplay');
So, if you wanted something to only show on the top of all forumdisplay pages, you could use:
PHP Code:
if (THIS_SCRIPT == 'forumdisplay')
But, that isn't going to help you since you don't want all forumdisplay pages, you only want one. I would use the forumid in your unique condition.
PHP Code:
if ($GLOBALS['forumid'] == xx)
change xx to the forumid of your shop forum.