On Aug 20, 6:51 am, Mesquite Christmas <n
...@mesquitechristmas.com>
wrote:
> Hello, I am a small problem I am trying to sort out. I have this page
> I am working on here....
> http://www.mesquitechristmas.com/local/display.php?id=%202
> If you notice below where the map is you will see a scroller. It is
> controlled by Js. That scroller is being called to the page from a
> seperate template with a php included. The problem I am having is when
> I include that scroller the map will not show. What can I do so they
> can both live on the same page together? It has been awhile since I
> have played with these maps. So any suggestions would be great. If you
> need some code, please tell me what I need to post and I will post it
> as I am unsure what I need to post.
This line of the javascript that loads the "scroller" overwrites the
body onload function (and causes your "load" function not to run):
window.onload=populate
(remove it, you have already changed you body onload function to
include it)
-- Larry