var frontierServerUrl = 'https://frontier.parabon.com';
var websiteServerUrl  = 'http://www.parabon.com';

function frontierUrl(path) {
  document.location = frontierServerUrl + path;
}
function websiteUrl(path) {
  document.location = websiteServerUrl + path;
}
