hi, just saw this use of php that seems especially applicable to ka-map javascript.<br>you can get php to gzip .js (or .css) files for you. this seems to be working pretty well. (see code below.) it gets it down to a single request of 27K instead of 8 requests totalling &gt; 130K.&nbsp; 
<br><br>-brent<br><br><br>&lt;?php<br>ob_start (&quot;ob_gzhandler&quot;);<br>header(&quot;Content-type: text/javascript; charset: UTF-8&quot;);<br>header(&quot;Cache-Control: must-revalidate&quot;);<br>$days = 30;<br>$offset = 60 * 60 * 24 * $days;
<br>$ExpStr = &quot;Expires: &quot; .<br>gmdate(&quot;D, d M Y H:i:s&quot;,<br>time() + $offset) . &quot; GMT&quot;;<br>header($ExpStr);<br><br>$files = array(&quot;DHTMLapi.js&quot;, &quot;xhr.js&quot;, &quot;jsExpander.js
&quot;, &quot;kaMap.js&quot;, &quot;kaTool.js&quot;, &quot;startUp.js&quot;, &quot;extra.js&quot;,&quot;testExtents.js&quot;);<br><br>foreach ($files as $fi){<br>&nbsp; print file_get_contents($fi);<br>}<br><br>?&gt;<br><br>