Embedded.setParameter fails. Bug?

Hello,

I have the following code:

     private Embedded constructFramee(String url) throws MalformedURLException{
              URL u = new URL(url);
              Embedded browser = new Embedded("", new ExternalResource(u));
              browser.setType(Embedded.TYPE_BROWSER);
	  browser.setWidth("100%");
              browser.setHeight("100%");

// browser.setParameter(“id”, “"iframe1"”);
// browser.setParameter(“id”, “‘iframe1’”);
browser.setParameter(“id”, “iframe1”);
return browser;
}

I place the embedding into a tab in a tabbed sheet.
When I look at the DOM structure via Chrome’s “inspect elements”
I see no “id” parameter. I have tried all 3 versions above.

What am I doing wrong?

TIA

Just realized this is wrong. What I want to do is set the attributes.
Will post the question correctly elsewhere.