15k doesn't seem too big at all to me. However, if it is a php page, there is a neat little trick you can do:
add this above your < html > tag:
and it will reduce the file size substantially.PHP Code:
<?php
@ini_set('zlib.output_compression_level', 1);
@ob_start('ob_gzhandler');
?>
hope this helps.
Bookmarks