webPopUp problems

Would someone be able to take a look at this? I’m creating a webPopUp that will display a Flickr “lightbox” webpage. Everything is working great on the iPad, but on the iPhone it appears that it doesn’t want to take up the entire landscape view. Appears that it’s trying to fit everything into a Portrait view instead of landscape.

Here’s my code if someone who knows a bit more about webPopUps than I could take a quick look at it.
(I’m in landscape mode the entire app. I’m also using Director Class)
Thanks.

[code]module(…, package.seeall)

local director = require “director”


function new()
localGroup = display.newGroup()

local myText = display.newText("", centerX, centerY, native.systemFont, 50)
myText:setTextColor(255, 255, 255)

myText.text = “click here for Africa Photos Page”
myText.size = 60
localGroup:insert(myText)

local function goToFlickr ()
native.showWebPopup( screenLeft,screenTop, display.contentWidth, display.contentHeight-36,
http://m.flickr.com/photos/awana_international/6059839284/lightbox/”,
{urlRequest=listener} )

end

function localGroup:clean()
native.cancelWebPopup()
_G.webPopup = false
end

myText:addEventListener( “tap”, goToFlickr)

return localGroup

end [import]uid: 90878 topic_id: 19808 reply_id: 319808[/import]