function redirectToPortal(communityId, pageId) {
  var portalUrlBase = "http://www.portal.state.pa.us/portal/server.pt?open=512&mode=2";
  var portalRedirectUrl = portalUrlBase;
  if (communityId != null && communityId > 0) {
    portalRedirectUrl += "&objID=" + communityId;
  }
  if (pageId != null && pageId > 0) {
    portalRedirectUrl += "&PageID=" + pageId;
  }

  window.location.href = portalRedirectUrl;
}

