var site_top_path = "http://www.morinaga.co.jp";
var site_path = site_top_path + "/blogparts/";
//•¶Žš
_dom = document.all?(document.getElementById?2:1):
                    (document.getElementById?4:
                    (document.layers?3:0));
                    
var mode = document.compatMode=="CSS1Compat";

function getWindowWidth(){
  if(_dom==4 || _dom==3) return window.innerWidth;
		if(_dom==2 || _dom==1){
			if(mode){ return document.documentElement.clientWidth; }
			else{ return document.body.clientWidth; }
		}
  return 0;
}

function getWindowHeight(){
  if(_dom==4 || _dom==3) return window.innerHeight;
		if(_dom==2 || _dom==1){
			if(mode){ return document.documentElement.clientHeight; }
			else{ return document.body.clientHeight; }
		}
  return 0;
}

function getScrollTop(){
  if(_dom==4 || _dom==3) return window.pageYOffset;
		if(_dom==2 || _dom==1){
			if(mode){ return document.documentElement.scrollTop; }
			else{ return document.body.scrollTop; }
		}
  return 0;
}

function getScrollLeft(){
  if(_dom==4 || _dom==3) return window.pageXOffset;
		if(_dom==2 || _dom==1){
			if(mode){ return document.documentElement.scrollLeft; }
			else{ return document.body.scrollLeft; }
		}
  return 0;
}

function showSWFBIG(swfurl,width,height){
	swfurl = site_path + swfurl;
	var html = 	'<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="'+width+'" height="'+height+'" id="dekamaru" align="middle">'+
				'<param name="wmode" value="transparent">'+
				'<param name="allowScriptAccess" value="always" />'+
				'<param name="movie" value="'+swfurl+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'+
				'<param name="FlashVars" value="site_top_path=' + site_top_path + '" />' +
				'<embed src="'+swfurl+'" quality="high" bgcolor="#ffffff" width="'+width+'" height="'+height+'" wmode="transparent" FlashVars="site_top_path=' + site_top_path + '" name="morinaga_bp_big" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>'+
				'</object>';
				
	var divObj = document.getElementById("flashcontent1");
	if(divObj){
		divObj.style.display = "block";
	}
	else{
		divObj  = document.createElement("div");
		divObj.id     		= "flashcontent1";
	}
	
	divObj.style.position = "absolute";
	divObj.style.left    = getScrollLeft() + "px";
	divObj.style.top     = getScrollTop()+ "px";
	divObj.style.width   = width;
	divObj.style.height  = height;
	divObj.style.zIndex  = 10;
	divObj.width  		= width;
	divObj.height 		= height;
	
	divObj.innerHTML    = html;
	window.document.body.appendChild(divObj);
}

function showMainSWF(){
	var swfurl = "morinaga_bp.swf";
	swfurl = site_path + swfurl;
	var width  = "160";
	var height = "305";
	
	var html = 	'<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="'+width+'" height="'+height+'" id="dekamaru" align="middle">'+
				'<param name="wmode" value="transparent">'+
				'<param name="allowScriptAccess" value="always" />'+
				'<param name="movie" value="'+swfurl+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'+
				'<embed src="'+swfurl+'" quality="high" bgcolor="#ffffff" width="'+width+'" height="'+height+'" wmode="transparent" name="morinaga_bp" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'+
				'</object>';

	document.write(html);
}
function showSubSWF(){
	var swfurl = "morinaga_bp_big.swf";
	var width  = "100%";
	var height = "100%";
	showSWFBIG(swfurl,width,height);
}
function hiddenSubSWF(){
	var divObj = document.getElementById("flashcontent1");
	if(divObj){
		divObj.style.display = "none";
	}
	
}

showMainSWF();