/**
 * @author atsushi nagase:070807
 */
function embFloorGuide(fnum, width, height) {
	document.write("<div id=\"floorguide\"><div id=\"flash-player\">");
	document.write("<a href=\"http://www.adobe.com/go/getflashplayer_jp\" target=\"_blank\"><img src=\"/common/img/get-flash-player.gif\" alt=\"FLASH PLAYER\" width=\"88\" height=\"31\" /></a><br />");
	document.write("Flash版サイトをご覧いただくためには <a href=\"http://www.adobe.com/go/getflashplayer_jp\" target=\"_blank\">Adobe Flash Player</a> が必要です。");
	document.write("</div></div>");
	var rnd = Math.ceil( Math.random() * 1000000 ).toString();
	//var w = 650;
	//var h = 420;
	var w = width;
	var h = height;

	var so = new SWFObject("\/swf\/map.swf?rnd="+rnd,"floorguide",w,h,8);

	so.addVariable("xmlurl", "/xml/floor"+fnum.toString()+".xml?rnd=" + rnd);

	so.addParam("wmode", "opaque");
	so.addParam("menu", "false");
	so.write("floorguide");
}

