Problem with buttons and HTML frames

I have created a button to open a web page to a different frame on the same web page. I have two framesets. One with one frame and the other with two frames. The button is in the first frame of the second frameset and I want the web page to load in the second frame in the second frameset. It is not working.

Here is the code from the web page that the frames are on:

<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<title></title>
<frameset rows=“255,*”>
<frame name=“top” src=“top.html”>
<frameset cols=“222, *”>
<frame name=“left” src=“leftpage.html”>
<frame name=“main” src=“main.html”>
</frameset>
</frameset><noframes></noframes>
</head>
<body>
</body>
</html>

Here is the code from the leftpage.html after I publish the button:

<body>

<!–url’s used in the movie–>
<a href=“left.html”></a>
<!–text used in the movie–>
<!-- saved from url=(0013)about:internet -->
<object classid=“clsid:d27cdb6e-ae6d-11cf-96b8-444553540000” codebase=“http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0” width=“72” height=“36” id=“dvdButton” align=“middle”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“movie” value=“dvdButton.swf” /><param name=“quality” value=“high” /><param name=“bgcolor” value="#ffffff" /><embed src=“dvdButton.swf” quality=“high” bgcolor="#ffffff" width=“72” height=“36” name=“dvdButton” align=“middle” allowScriptAccess=“sameDomain” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object>
</body>

Here is the action script that I use:
getURL(“left.html”,“main”);

I have also tried javascript and still does not work.

Anyone have any ideas?