// braindead IE6 text select bug hack workaround
// Stolen shamelessly from Fark.com
if (window.createPopup && document.compatMode && document.compatMode=="CSS1Compat") 
{
	document.onreadystatechange = onresize = function fixIE6AbsPos() 
	{
		if (!document.body) return;
		if (document.body.style.margin != "0px") document.body.style.margin = 0;
		onresize = null;
		document.body.style.height = 0;
		setTimeout(function() { document.body.style.height = document.documentElement.scrollHeight+'px'; }, 1);
		setTimeout(function() { onresize = fixIE6AbsPos; }, 100);
	}
}