function resizeFlash(){
	var w = Environment.getWindowWidth();
	var h = Environment.getWindowHeight();
	h = (h > 0 && h < 640) ? '640px' : '100%';
	w = (w > 0 && w < 980) ? '980px' : '100%';
	Element.css('flash', 'width', w);
	Element.css('flash', 'height', h);
}

if (Flash.hasVersion(10)) {
	window.onresize = function(){
		resizeFlash();
	};
	window.onload = function(){
		var flashvars = new Object();
		var params = {bgcolor: '#46210e', menu: 'false'};
		var attributes = {id: 'colleenbrown', name: 'colleenbrown'};
		swfobject.embedSWF('startup.swf', 'colleenbrown', '100%', '100%', '10.0.0', '/scripts/swfobject/expressInstall.swf', flashvars, params, attributes);
		resizeFlash();
	};
	/*window.onload = function(){
		new FlashElement('startup.swf', {
			version:10, 
			width:'100%', 
			height:'100%', 
			bgcolor:'#46210e'
		}).insertInto('flash');
		resizeFlash();
	};*/
} else {
	setTimeout("window.location.href = 'upgrade.html'", 1000);
}