function winMin(){
	if (document.all) {                     // for Internet Explorer
		winWidth = document.body.clientWidth;
		winHeight = document.body.clientHeight;

		if(winWidth <= 1010){
			objWidth = "1010px";
		}else{
			objWidth = "100%";
		}
	  if((winHeight <= 600)){
			objHeight = "600px";
		}else{
			objHeight = "100%";
		}

		if(document.top[0] && document.top[1]){      //for win
			document.top[0].width = objWidth;
			document.top[0].height = objHeight;
			document.top[1].width = objWidth;
			document.top[1].height = objHeight;
		}else{                                                 //for mac
			document.top.width = objWidth;
			document.top.height = objHeight;
		}
	}else{
		if(window.innerWidth <= 1010){
			objWidth = "1010px";
		}else{
			objWidth = "100%";
		}
	  if((window.innerHeight <= 600)){
			objHeight = "600px";
		}else{
			objHeight = "100%";
		}
	
		document.getElementById('top').width = objWidth;
		document.getElementById('top').height = objHeight;

	}
}

document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="top" align="middle"><param name="allowScriptAccess" value="always" /><param name="movie" value="http://www.sonymusic.co.jp/Music/Info/FumiyaFujii/swf/top.swf" /><param name="quality" value="best" /><param name="scale" value="exactfit" /><param name="bgcolor" value="#FFFFFF" /><embed src="http://www.sonymusic.co.jp/Music/Info/FumiyaFujii/swf/top.swf" quality="best" scale="exactfit" bgcolor="#FFFFFF" width="100%" height="100%" name="top" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
