function resizeSWF(h) {
	var height = Math.max(minHeight, h);
	swffit.fit('theswf', 900, height);
}

function flashwindow(url, w, h) {
	var w = window.open(url, '', 'width=' + w + ',height=' + h + ',resizable,scrollbars');
}

function flashDebug(txt) {
	if (window.console && window.console.log) {
		console.log(txt);
	}
}
