hehe, i got this script workin to open new windows for a sad excuse for a windows widget kinda thing lmao but it does what you lookin for:
HTML Code:
<head>
<script LANGUAGE="javascript">
<!-- defines size of window -->
function ScreenSize(w,h){
window.resizeTo(w,h);
}
</script>
</head>
<body onload="javascript:void window.ScreenSize(205,233); ">
BODY CONTENT
</body>
after thought.....u mentioned 'fixed'.....put this in yer links and they won't be able to resize the window
HTML Code:
<a href="javascript:void window.open('LINK GOES HERE','','resizable=no,scrollbars=yes,menubar=no,toolbar=no,location=no');">LINK NAME GOES HERE</a>
modify the other parameters as nessesary
Bookmarks