Thanks for the reply!!
I tried your code, and at least I am not in the Atlantic Ocean anymore, but the map did not "center" with the centering code in place. Please see below. I had to put the center reference in the map constructor in order to return the map. do you see any obvious erros on my part?
var mylat = 29.452752;
var mylong = -95.424705;
var CenPoint = new esri.geometry.Point({ "x": mylat, "y": mylong, " spatialReference": { " wkid": 4326 } });
var mercator = esri.geometry.geographicToWebMercator(CenPoint);
map = new esri.Map("map", {
extent: initialExtent,
centerAt: (mercator), infoWindow: popup
});