How to navigate in a WebView?

//Called when the back key is pressed.  
function OnBack()
{
    if(web.CanGoBack())
    {
        web.Back();
    }else
    {
        app.Alert("Can't go back");
    }
}