The following code opens the new window without scrollbars in Firefox, IE and Opera.
var options = { height: 300, // sets the h
This style should do the trick, add it to the opened window document:
body{ overflow-x:hidden;overflow-y:hidden; }