SWF link not working in HTML

I know this has been an issue for a lot of people in the past, but I am looking for a fresh answer.
I created 7 SWF files and put them each into their own html file. Links function in my Home.html but the swf does not want to link from any other page.
I’m using AS2 and have used this kind of code on my buttons:


on (release) {
    getURL ("Home.html");
}

Now I read at

http://kb2.adobe.com/cps/000/50c1cf38.html 

that flash player 9 doesn’t really allow you to access other html files from swf files.
I also read that if you use the code

<param name="allowScriptAccess" value="always">

will fix it but I have no idea where to put it in my html code.

Also, I prefer not to have my pages open up in _blank.

Is there an easy solution?