Link variable from html to flash

Hi.

I have this little flash where is one button with this code:

on (release) {
getURL(_root.address);
}

That is because I want my html to give that address. In html I have this kind of code:
(sorry about the length)

…L_RunContent(
‘codebase’, ‘http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0’,
‘width’, ‘100%’,
‘height’, ‘100%’,
‘src’, ‘scanburger_intro.swf?address=index2.html’,
‘quality’, ‘high’,
‘pluginspage’, ‘http://www.macromedia.com/go/getflashplayer’,
‘align’, ‘middle’,
‘play’, ‘true’,
‘loop’, ‘false’,
‘devicefont’, ‘false’,
‘id’, ‘scanburger_intro.swf?address=index2.html’,
‘bgcolor’, ‘#ffffff’,
‘name’, ‘scanburger_intro.swf?addres=index2.html’,
‘menu’, ‘false’,
‘allowScriptAccess’,‘sameDomain’,
‘allowFullScreen’,‘false’,
‘movie’, ‘scanburger_intro’,
‘salign’, ‘’
); //en

This has sometimes worked with me but now my browser gives my some undefined address and not that index2.html. What did I do wrong?

Sorry about this messy post but I don’t know any other way to tell this. :smiley:

Thanks.

Mikko