Here are some pre-made
To get the links to popup in a new window use this script
Create the movie in Flash:
Assign the getURL action to a button or keyframe.
For the URL, insert the code below, copying the information exactly.
Custom values for the URL, dimensions, toolbars, and scrollbars can by used, but creating a basic working example using this code first is recommended.
javascript

penNewWindow('http://www.macromedia.com','thewin',
'height=400,width=400,toolbar=no,scrollbars=yes')
The above code can be pasted into the URL window. The above two lines must be copied separately, then pasted together into one single string of characters.
Publish the Flash movie and HTML page using the "Flash Only (Default)" HTML Template.
Part Two: Add the JavaScript to the HTML page
Open the published HTML from part one for editing using Notepad, Simple Text, or an HTML editor such as Macromedia Dreamweaver.
Copy the following code, exactly as it appears below:
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
</script>
Paste the code between the HEAD tags in the HTML source.
the face you see in the code should look like this with no spaces : o