Ben Vollmer had an excellent post on how to hide navigation items using a bit of JavaScript.

I decided to put that into play tonight to remove the Sub-Accounts navigation option when the user displays the Account screen. We don't want Sub-Accounts on this solution so the following code will remove it.

Just put it into the Account Form OnLoad event.

var navSubAcct = document.all.navSubAct;

if (navSubAcct != null) { navSubAcct .style.display = "none"; }

 

Thanks Ben.