Hi,<br><br>I&#39;m trying to load a local kmz file onto a Mapserver layer. I&#39;m getting an error in Firebug which reads &quot;location is full.&quot; Any suggestions? Here is my code<br><br>    &lt;script type=&quot;text/javascript&quot;&gt;<br>
             &lt;!--<br>             var map, layer, bounds;<br>            <br>             function init(){<br>                 map = new OpenLayers.Map(&#39;map&#39;, { projection: new OpenLayers.Projection(&quot;EPSG:22332&quot;),<br>
  displayProjection: new OpenLayers.Projection(&quot;EPSG:22332&quot;), units: &quot;meters&quot;} );<br>                 layer = new OpenLayers.Layer.MapServer( &quot;Jerba&quot;,<br>                        &quot;<a href="http://localhost/cgi-bin/mapserv.exe">http://localhost/cgi-bin/mapserv.exe</a>&quot;, {map: &#39;C:/ms4w/apps/jerba_apps/Jerba.map&#39;} );<br>
                map.addLayer(layer);<br>        map.addLayer(new OpenLayers.Layer.GML(&quot;Jerba_Topo&quot;, &quot;kml/jerba_topo.kmz&quot;));<br>                map.zoomToExtent( new OpenLayers.Bounds (629664.75, 3694383.75, 693473.18, 3754557.09));<br>
                map.addControl( new OpenLayers.Control.LayerSwitcher() );<br>                map.addControl( new OpenLayers.Control.MousePosition() );<br>                map.addControl( new OpenLayers.Control.OverviewMap() );<br>
                map.addControl( new OpenLayers.Control.ScaleLine() );<br>                map.addControl(new OpenLayers.Control.Permalink());<br>             }<br>             // --&gt;<br>         &lt;/script&gt;<br>