well,
display it into a new window
You need some Javascript in the html
function popup(url)
{
var style = "height=500, width=500, location=no, scrollbars=no, menubars=no, toolbars=no, resizable=yes";
window.open(url, "", style);
}
and a link like:
<a href="javascript:popup('swf.php?name=PeanutButterJellyTime')">PeanutButterJellyTime</a>
and swf.php script like:
header("Location: swf_directory/."$_GET['name'].".swf");
hope it helps.