I had simply dragged the DOJO controls onto the xPage as they are simply there in V9.0.. A glance at the source browser source code revealed that their ID tags get significantly modified for the client side.
I needed to change
var TabContainer = dijit.byId("djTabContainer1");
to
TabContainer = dijit.byId("view:_id1:djTabContainer1");
and
var subTab = dijit.byId("djTab_map");
to
var subTab = dijit.byId("view:_id1:djTabContainer1:djTab_map");
Works Fine now
TBear