var MapClass = function(){};MapClass.prototype = {name:"",mapname:"",webroot:"",lang:"",setName:function( name , mapname, webroot ,lang ){this.name = name;this.mapname = mapname;this.webroot = webroot;this.lang = lang;},showGMap:function(){document.getElementById( "map" ).loadModule("gmap");},showYMap:function(){document.getElementById( "map" ).loadModule("ymap");},showControl:function(){document.getElementById( "map" ).loadModule("navi");},showHistory:function(){document.getElementById( "map" ).loadModule("history");}};var LegacyMapClass = function(){};LegacyMapClass.prototype = {name:"",mapname:"",webroot:"",lang:"",setName:function( name , mapname, webroot ,lang ){this.name = name;this.mapname = mapname;this.webroot = webroot;this.lang = lang;},showGMap:function(){var flashvars = {key:"ABQIAAAAeJW0I_ZYyBadmxTvOLjjuxTQlNahDvI3GAthkIGMIq7kCcZ89xQEYLA42ADWicUih4jDb915RXB6xA",nation:this.mapname,xml:this.webroot+"xml/map.xml"};var params = { bgcolor : "#ffffff" , menu: "false", allowFullScreen:"true"};swfobject.embedSWF(this.webroot+"swf/map/gmap.swf", "map", "780", "400", "9.0.0", "" , flashvars , params );},showYMap:function(){var flashvars = {n:this.mapname,swfdir:this.webroot+"swf/map/",xml:this.webroot+"xml/map"};var params = {bgcolor : "#ffffff" ,menu: "false",allowFullScreen:"true"};swfobject.embedSWF(this.webroot+"swf/map/ymapLd.swf", "map", "780", "400", "7,0,19,0", "" , flashvars , params );},showControl:function(){var flashvars = {cntName:this.name};var params = { bgcolor : "#ffffff" , menu: "false"};var swf = this.lang == "en" ? "swf/lmap.swf" : "swf/lmapjp.swf";swfobject.embedSWF(this.webroot+swf, "map", "780", "400", "6,0,29,0", "" , flashvars , params );}};