When I view the:
http://80.59.94.8/kaleidos_mapa/form/mapa.php
It works fine in IE6 and FF. Also, if I refresh the iframe while viewing it on:
http://80.59.94.8/kaleidos_mapa/
it works fine then too. I'd try this:
HTML Code:
<iframe name="mapaFrame" src="blank.htm" height="600" width="700" scrolling="auto" frameborder="0"></iframe>
For that you will need a file called blank.htm:
HTML Code:
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
Then where you click to see the map, where it has this:
Code:
onClick="return expandcontent('sc9', this)"
Make it like this:
Code:
onclick="return false" onmousedown="return expandcontent('sc9', this)" onmouseup="mapaFrame.location.replace('form/mapa.php')"
Bookmarks