function closeFla(){
	if(document.getElementById) {//NN6,Mozilla,IE5
		document.getElementById("flaLayer").style.visibility = 'hidden';
	}else if(document.all){       //IE4
		document.all("flaLayer").style.visibility = 'hidden';
	}else if(document.layers) {   //NN4
		document.layers["flaLayer"].visibility = 'hide';
	}
}

function docWrite(){
	var swf = "http://www.asahibeer.co.jp/clear/blog/asao01.swf";
	var html="";
	html+='<div id="flaLayer" style="visibility:visible;">';
	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="185" height="286" id="clear_asao01">';
	html+='<param name="allowScriptAccess" value="always" />';
	html+='<param name="movie" value="'+swf+'" />';
	html+='<param name="quality" value="high" />';
	html+='<param name="wmode" value="transparent">';
	html+='<param name="bgcolor" value="#333333" />';
	html+='<embed src="'+swf+'" quality="high" bgcolor="#333333" width="185" height="286" name="switch_bomb" align="middle" wmode="transparent" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	html+='</object>';
	html+='</div>';
	document.write(html);
}
docWrite();

