> Normally, you kick off the Gmap code with an onload call in the <body>
> tag. For example: <body onload="init;">

<body onload="init();">

or

window.addEvent('load',init);

Inline  events  require  you to explicitly call the function; addEvent
accepts a function object and runs it implicitly.

-- Sandy

Reply via email to