/*
 Handles browser resize for Flash
 Author: Isotop AB
 Modified by: Moxie
*/

function onWindowResize(recursive) {
	var contentDiv = $('flashcontainer');
	contentDiv.style.height = (document.viewport.getHeight()-HEADER_HEIGHT)+'px';

	if (recursive != true) {
		TIME_OUT = setTimeout('onWindowResize(true)',100);
	}
	else {
		clearTimeout(TIME_OUT);
	}
}

function adjFlashContainer() {
	$('flashcontainer').setStyle({'top':'40px'});
}