if(document.images){pic1=new Image(20,20);pic1.src="images/remembermilk_orange.gif";}function jscompress(){$(".fade").hide();$("#output").hide();$("#compressed_heading").html('<img src="images/remembermilk_orange.gif" width="20" height="20"/> Compressing...');if(document.getElementById('input_code').value!=""){if(document.getElementById('secure_compression').checked){var secure_compression=1;}else{var secure_compression=0;}$.post("compressor.inc.php",{js:document.getElementById('input_code').value,secure:secure_compression},function(json){var reply=eval("("+json+")");$("#compressed_heading").fadeOut('normal',function(){$("#compressed_heading").html('Voil&agrave;, your compressed code:').fadeIn('normal',function(){$("#output").html('<textarea id="output_code">'+reply.contents+'</textarea>').show('normal',function(){$("#button").html("Compress it again!");$("#statistics1").html(reply.original_size);$("#statistics2").html(reply.compressed_size+" ("+reply.size_in_percent+"%)");$("#functions").html('<a href="javascript:document.getElementById(\'output_code\').select()">Click here to select the code...</a>');$(".fade").fadeIn('slow');});});});});}else{$("#compressed_heading").html('Error: It is impossible to compress nothing!').fadeIn("normal");$("#output").html('Please enter some code or <a href="http://en.wikipedia.org/wiki/Nothing" target="_blank" style="display:inline;border:0;padding:0;">click here and learn more about nothing...</a>').fadeIn("slow");}}