public void DisplayWeb(string webUrl, string title) { WebRoot.SetActive(true); VideoRoot.SetActive(false); curUrl = webUrl; SimpleController webControl = WebRoot.GetComponentInChildren <SimpleController> (); webControl.GoToUrl(webUrl); TitleText.text = title; }