Frame dissease

hello, i am experiencing problems working with frames, i hope someone can help me (its for the work :wasted: )

This is my frame set code:

 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "[http://www.w3.org/TR/html4/frameset.dtd](http://www.w3.org/TR/html4/frameset.dtd)">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>...::: Welcome To Z Code ::::...</title>
</head>
<frameset rows="187,*" cols="*" frameborder="NO" border="0" framespacing="0" noresize="TRUE">
  <frame src="top.html" name="top" scrolling="NO" noresize="TRUE">
  <frameset rows="*" cols="200,*" framespacing="0" frameborder="NO" border="0" noresize="TRUE">
    <frame src="NavBar.html" name="left" scrolling="NO" noresize="TRUE">
    <frame src="mainframe.html" name="main" frameborder="YES" border="1" noresize="TRUE">
  </frameset>
</frameset>
<noframes><body> Sorry, This Browser doesn't support Frames
</body></noframes>
</html>

And this is my AS code:

 
var aLink:String;
TextLink.onLoad = function () {
  Arrow._visible = true;
}
onRelease = function () { 
  getURL(aLink, "main", "GET");
}

I say that it should be working; but its obvious that, if it’s not working, there is something i’m doing wrong :frowning:

Thanks for the replies.