Display an image until a web popup loads

I try this, but only the default background is visible instead of the webview
 

local function webListener(event)   if event.type == "loaded" then    webView.x =0   end  end local webView = native.newWebView( display.contentCenterX, display.contentCenterY, 320, 480 ) webView:request( "http://gogols.in/" ) webView.x=-10000000 webView:addEventListener( "urlRequest", webListener )

It is supposed to move until the page is loaded

After the background screen come, nothing happens. The screen freezes.