Can you tell me which script links are broken? I know there was a problem, but that's solved now.
Anyhow, if you want to include foreign HTML, you have to use iframes. You could do something like this:
Code:
<a href="#" onclick="inserted=document.getElementById('SomeDiv');
inserted.style.position='relative'; inserted.style.width='70%'; inserted.style.height='70%';
inserted.style.left='10px'; inserted.style.top='20px'; inserted.innerHTML='<iframe src=\'http://www.google.com\' frameborder=\'no\' style=\'width:40%;height:40%;\'></iframe>'; return false">Google</a>
<div id="SomeDiv"></div>
or replace the appropriate parts of the lines above with css / javascript-functions.
===
Arie Molendijk.
Bookmarks