Good for opening website to the browser##browser
string baseUri = "https://myawesomewebsite.com"
Application.OpenURL(baseUri + "/faqs.html");
Application.OpenURL(baseUri + "/contactus.html");
Good for opening deployed app to the Play Store
string market = "market://details?id="
Application.OpenURL(market + Application.identifier);