Whats up guys n gals

OK, I have an html page (support.htm) that I need to pop up in a seperate browser without toolbars, menus ect...

I have that working using the following script and with
<body onload="resizeTo(400,500)"> in the body tag on support.htm

<script LANGUAGE="JavaScript">
{
window.open('support.htm','',directories='no',menubar='no',scrollbars='yes',
status='no',toolbar='no')
}
</script>

Problem is that there are no scrollbars in the popup window?
Any Ideas ?

Thanks all
"B"