I started the thread below this and thought the guy answered my question but it turns out it's a little different. The one he gave me opens a popup window. I need be able to click on a link then have linked window resize while the original window stays put. Here's some more info:
I need a small script for a window resize that only shows the border. I've been using the one below but it doesn't do what I need. I know you need to add
toolbar=no,menubar=no,location=no,scrollbars=no,resize=no
in somewhere but not sure how. Please help
<script language="JavaScript">
function mov_it()
{// version 1.00
self.moveTo(0,0);//specify the pixel width, pixel height here
self.resizeTo(600,400);//specify the pixel width, pixel height here
}
//-->
</script>
</head>
<body>
<body onload="mov_it();">
I need a small script for a window resize that only shows the border. I've been using the one below but it doesn't do what I need. I know you need to add
toolbar=no,menubar=no,location=no,scrollbars=no,resize=no
in somewhere but not sure how. Please help
<script language="JavaScript">
function mov_it()
{// version 1.00
self.moveTo(0,0);//specify the pixel width, pixel height here
self.resizeTo(600,400);//specify the pixel width, pixel height here
}
//-->
</script>
</head>
<body>
<body onload="mov_it();">