hi, i have these two pages: test.html <html> <head> <title>Test page</title> </head> <body> <A href="#" onClick="window.open('testpage.html', '_blank', 'height=500,width=650,toolbar=0,menubar=0,location =0,resizable=0,scrollbars=1,status=0');">Click here</A> </body> </html> and testpage.html <html> <head> <title>Test page</title> </head> <body> ...a few paragraphs here... </body> </html> the problem in firefox 1.5.0.9 (the one i have on my pc - the latest version supporting romanian language) is that it not shows the pop up window at 650px (like in this case) but much, much less pixels. someone suggested me to put on testpage.html: <style type="text/css"> body { width:650px; } </style> but without success. have anyone else experiencing this problem? how can i resolve it. thanks