I was wondering if anyone had heard of IE totally ignoring the sizes specified
in the window.open() method? I am trying to open a window in javascript and it
is opening as the default IE window size. The only thing that I have been able
to do is a resize on the open of the window. This looks stupid. :-)

Below is the code that opens the window...


<script type="text/javascript">

function showBonded() {
var pickMe = document.bondedform.bonded.value;
var url = pickMe + ".php";
if (pickMe != "nada") {
var newWind = window.open(url, "Carpet Cushion Window",
"scrollbars=no,menubar=no,height=450,width=485,res izable=yes,toolbar=no,location
=no,status=no");
newWind.focus();
}
}

</script>