function setT (t) {
	document.title = t;
}

function resizeIframe () {
	var f = document.getElementsByTagName('iframe')[0];
	var m = document.getElementsByTagName('body')[0];
	f.style.width = (parseInt(m.clientWidth) * 1.0) + 'px';
	f.style.height = (parseInt(m.clientHeight) * 1.0) + 'px';
}

function initIframe () {
	resizeIframe();
	// IE6 bug workaround
	var f = document.getElementsByTagName('iframe')[0];
	f.src = '/iframe?chans=' + encodeURIComponent(document.location.hash.substring(1).replace('#', ''));
}

