
function resize_flash()
{
	/*
	var x,y;	
	var resX, resY;
	
	resX = screen.width;
	CookieUtils.set('width',resX);
	
	resY = screen.height;
	CookieUtils.set('height',resY);
	
	if (self.innerHeight)
	{
		x = self.innerWidth;
		y = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	{
		x = document.documentElement.clientWidth;
		y = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		x = document.body.clientWidth;
		y = document.body.clientHeight;
	}
		
	if(window.flash == 0 ){
		var min_width = 1004 - 696;
	}else if(window.flash == 1 ){
		var min_width = 1004 - 714;
	}else{
		var min_width = 1004 - 576;
	}
	var over = (x - 1004) / 2;
	if(over <= 0){ over = 0; }
	
	var width		= min_width + over -5;
	
	if( document.getElementById('flash')){
		var flash		= document.getElementById('flash');
		flash.style.width = width + 'px';
	}
	*/
}


