Figured it out.It was a projection issue. My intranet map is Geographic, and my other map is Web Mercator. I set the following up and in my map.js script..dojo.connect(map, 'onLoad', function(){
dojo.connect(map.graphics, 'onClick', function(evt){
map.infoWindow.show(evt.screenPoint, map.getInfoWindowAnchor(evt.screenPoint));
});
});
That solved everything..