Put this javascript code in the head of the page that is loaded first. This will create a popup window with the .swf
<SCRIPT LANGUAGE="Javascript">
function openWindow(URL, Name) {
winprops = 'width=450,height=450,scrollbars=no,resizable=no,s tatus=no,menubar=no'
win = window.open(URL, Name, winprops)
}
</SCRIPT>
The link has to be something like <a href="javascript:openWindow('Somewin.html','Name') ;">Link</a>