lol... well working is such a realtive term isn't it
i've got everything actually working fine, with the exception of the menu system. It wraps itself to the window so the offset it give each menu is WindowPosition+Offset, which is annoying because you resize the window and the page itself is centered - so it also changes position. (typical really)
i can't figure out the JavaScript to allow me to get the window size so i can set a new revised offset whenever the window is resized.
i did have
if( this.onresize==true );
{
this.focus();
wndWidth = this.outerWidth();
scnWidth = screen.width();
}
but unfortunately all wndWidth would return was "undefined"
i have a feeling i have to setup some code somewhere to create the windows original settings and throw it in a variable on startup but looking through the poorly devised manual on netscape feels like a waste of time.
well i'm sure the answer will be blatantly obvious to me sometime.