I need to use the following code in an iframe in order to resize it when it opens.
<SCRIPT LANGUAGE="javascript">
<!--
width=700;
height=180;
window.resizeTo(width,height);
//-->
</SCRIPT>
The problem is that it works in IE but does not work in firefox.
Can anyone think of a way of making it work in firefox?
Thanks.