I&#39;m using the script below to read a KML file. The closing &lt;/description&gt; marks in the file have a page break before them.  This results in the descriptions not being read by the script below.  This problem does not occur when reading the file with Google Earth.  Is this a problem with Openlayers, or is Openlayers following stricter XML syntax requirements?<br>
<br>var real = new OpenLayers.Layer.Vector(&quot;Neuse&quot;, {<br>                projection: map.displayProjection,<br>                strategies: [new OpenLayers.Strategy.Fixed()],<br>                protocol: new OpenLayers.Protocol.HTTP({<br>
                    url: &quot;real.kml&quot;,<br>                    format: new OpenLayers.Format.KML({<br>                        extractStyles: true,<br>                        extractAttributes: true<br>                    })<br>
                })<br>});<br><br>Thanks<br>Jim<br>