I use following script to resize the windowsize:
<html>
<head>
<titlte>Size</title>
<script>
function document_onload()
{
self.resizeTo(600,600);
self.moveTo(100,100);
}
</script>
<head>
<body onLoad="document_onload()">
<body>
</html>
Everything is OK when using on a page without frames but doensn't work with frames.
Does anyone know a solution or another script to resize a page with frames.
Johan.
<html>
<head>
<titlte>Size</title>
<script>
function document_onload()
{
self.resizeTo(600,600);
self.moveTo(100,100);
}
</script>
<head>
<body onLoad="document_onload()">
<body>
</html>
Everything is OK when using on a page without frames but doensn't work with frames.
Does anyone know a solution or another script to resize a page with frames.
Johan.