<?
if(strpos( $_SERVER["HTTP_ACCEPT_ENCODING"], "gzip" ) !== false){
        header( "Content-Encoding: gzip" );
	header( "Content-Type: application/x-javascript"  );
	header( "Content-Length: " . filesize( "goosh.gz" ) );

        readfile("goosh.gz");
	
	}
	else readfile("goosh_u.js");
?>

