Did you find a solution? I'm trying to do something very similar and have some problems with the dyniframe.js you reference.
I have found the solution for your problem based on dyniframe.js
I hope this solution is meaningful for you :cheesy:
The solution is you have to put last statement into new own function. and every page that you want to load into the frame call parent function that you created before. For example :
in Main Page (before) :
[html]<Script>
...
...
if (window.addEventListener)
window.addEventListener("load", resizeCaller, false)
else if (window.attachEvent)
window.attachEvent("onload", resizeCaller)
else
window.onload=resizeCaller
</Script>[/html]
Change into :
[html]<Script>
...
...
function onLoadPage() {
if (window.addEventListener)
window.addEventListener("load", resizeCaller, false)
else if (window.attachEvent)
window.attachEvent("onload", resizeCaller)
else
window.onload=resizeCaller
}
</script>[/html]
On every frame page put script on body tag like this :
[html]<body onLoad="parent.onLoadPage();">
...
...
</body>[/html]