Is there a way to make a panel contain a webpage.. so that it acts kinda like a frame?

Is there a way to make a panel contain a webpage.. so that it acts kinda like a frame?

try this inside the

try this inside the panel:

<object id="page" type="text/html"
    data="http://www.google.com"
    width="100%" height="100%">

  <p>didn't work...</p>
</object>

I tried that.. but it just displayed a blank area

I copied that object code into a panel, and it just displayed a blank area. The area had disabled scroll bars, but even the "didn't work..." didn't show.

I tried it and it works

I tried it and it works perfectly inside a panel...

The OBJECT solution only

The OBJECT solution only works in Firefox.
Try an iframe:

<iframe id="page" src="http://www.google.com" width="100%" height="100%" />