On Oct 13, 12:31 pm, smourt <[EMAIL PROTECTED]> wrote:
> initially I was trying to open using:
>
> onClick="javascript:window.open('www.sphericalimagery.com_jawitz
> %20template.html','_blank','status=yes,top=0,left=0,width=350,height=430');">www.sphericalimagery.com_jawitz
> template.html
>

what reference did you use to find that syntax? ;-)

Here is a good reference:
http://developer.mozilla.org/en/DOM/window.open

and you cannot assign a DOM event listener to a non-DOM object,
therefore it goes inside the marker's click event handler, added with
GEvent:

GEvent.addListener(marker,'click',function(){
  var myPopUp = window.open( ... ETC ...);
})


--
Marcelo - http://maps.forum.nu
--



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to