cptn_future
11-01-2003, 02:41 AM
Hi all...
I want to have this browser window that when it loads, it loads with certain properties. i.e no address bar, no scrollbars....etc. I was given the code below, but it doesnt fit the bill.
-----------------------------------------------------------
script language=javascript>
window.onload=Resize;
var windowTop=0;
var windowLeft=0;
var windowHeight=500;
var windowWidth=500;
function Resize()
{
window.moveTo(windowLeft, windowTop);
window.resizeTo(windowWidth, windowHeight);
window.focus();
}
</script>
-----------------------------------------------------------
Any suggestions??
Thanx
I want to have this browser window that when it loads, it loads with certain properties. i.e no address bar, no scrollbars....etc. I was given the code below, but it doesnt fit the bill.
-----------------------------------------------------------
script language=javascript>
window.onload=Resize;
var windowTop=0;
var windowLeft=0;
var windowHeight=500;
var windowWidth=500;
function Resize()
{
window.moveTo(windowLeft, windowTop);
window.resizeTo(windowWidth, windowHeight);
window.focus();
}
</script>
-----------------------------------------------------------
Any suggestions??
Thanx