/*
 * download toggle.
 */
$(function(){var height;if($.browser.msie){height = document.body.clientHeight;}else{height = $('html').height();}func.tgl(height);$('#agree').click(function(){func.tgl(height);});});var func={tgl:function(height){if($('#agree')[0].checked){$('#downloadArea1').show();$('#downloadArea2').show();scrollTo(0,height);}else{$('#downloadArea1').hide();$('#downloadArea2').hide();}}}