 $(function() {
	
	// (MOD: Spoiler tag)
	$("span.spoiler a").toggle(function() {
		$(this).next().css("display","inline");
	},function() {
		$(this).next().css("display","none");
	});
	
});

function resizeIframe() {
        var fheight = document.documentElement.clientHeight;
        document.getElementById('chat').style.height = fheight +"px";
  }
  window.onresize=resizeIframe;