Popup windows opens without scroll bars

Hello!
I am facing the following problem: in my application I create a link which leads to external website.
The site opens in the new window but there are no scroll bars.
The code looks like this:

String fLink = “http://jira.bluecatnetworks.corp:8080/browse/” + name;
Link lnk = new Link(name, new ExternalResource(fLink));
lnk.setTargetName(“second”);
lnk.detach();
lnk.setTargetHeight(800);
lnk.setTargetWidth(1200);
lnk.setTargetBorder(Link.TARGET_BORDER_DEFAULT);
lnk.setData(fLink);

Ideas?

Hi,

I have the same issue but then with the configuration:

    mylink.setTargetName("_blank");
    mylink.setTargetBorder(Link.TARGET_BORDER_NONE);

on a ubuntu 10.10 for Firefox 3.6

A reduced test case and a new ticket in dev.vaadin.com will help most likely to proceed the investigation.