// Copyright 2009 (C) Otto de Voogd - http://www.7is7.com/
//
// ALL RIGHTS RESERVED
//
// Set party counter font size function
//

function setFontSize() {
	if ('undefined'==typeof(fxc_total)) {
        timeoutFS=setTimeout('setFontSize()',200);
    } else {
		// Set font-size
		var dWidth=800;
		var dHeight=600;
		if (self.innerWidth) { // W3C compliant browsers
			dWidth=self.innerWidth;
			dHeight=self.innerHeight;
		} else if (document.documentElement && document.documentElement.clientWidth) { // The other crap, IE.
			dWidth=document.documentElement.clientWidth;
			dHeight=document.documentElement.clientHeight;
		} else if (document.body) { // Older versions of the other crap.
			dWidth=document.body.clientWidth;
			dHeight=document.body.clientHeight;
		}
		var fxclen=(''+fxcEstimate()).length;
		fxclen=fxclen+Math.floor((fxclen-1)/3);
		var boxh=dHeight-10;
		document.getElementById('wrapper').style.height=boxh+'px';
		document.getElementById('fxctotal').style.fontSize=dWidth/fxclen+'pt';
		document.getElementById('heading').style.fontSize=dWidth/44+'pt';
		//document.getElementById('links').style.fontSize=dWidth/110+'pt';
	}
}

function start() {
	init(); // from sitescript.js
	fxcStart('fxctotal'); // from fxcounter_lib.js
	setFontSize();
}

window.onload=start;
window.onresize=setFontSize;

// TIAF!
