I use this code to detect the opacity syntax that is supported in a wide range of browsers
if(typeof(div.style.filter)=='string'){div.style.filter='alpha(opacity:'+ this.percentOpacity+')';} if(typeof(div.style.KHTMLOpacity)=='string'){div.style.KHTMLOpacity=this. percentOpacity/100;} if(typeof(div.style.MozOpacity)=='string'){div.style.MozOpacity=this.perc entOpacity/100;} if(typeof(div.style.opacity)=='string'){div.style.opacity=this.percentOpa city/100;} -- Mike Williams http://econym.org.uk/gmap -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to google-maps-...@googlegroups.com. To unsubscribe from this group, send email to google-maps-api+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.