
var SmcInfo=Class.create();SmcInfo.prototype={initialize:function(d){this.doc=d.document;this.oSmcInfoDiv=this.doc.createElement("div");this.oSmcInfoDiv.id="SmcInfo";this.oSmcInfoDiv.style.position="absolute";this.oSmcInfoDiv.style.zIndex=98;this.oSmcInfoDiv.style.top=this.doc.body.clientHeight/2+130;this.oSmcInfoDiv.style.left=this.doc.body.clientWidth/2-120;this.oSmcInfoDiv.style.backgroundColor="#fff";this.oSmcInfoDiv.style.color="#000099";this.oSmcInfoDiv.style.padding=5;this.oSmcInfoDiv.style.filter="alpha(opacity=90)";this.oSmcInfoDiv.style.opacity="0.90";this.oSmcInfoDiv.style.mozOpacity="0.90";this.oSmcInfoDiv.innerHTML="MAPの縮尺を大きくしてご利用ください。";Event.observe(this.oSmcInfoDiv,'mousedown',this.mousedown.bind(this),true);var oLayer=this.doc.getElementById("Layer");oLayer.appendChild(this.oSmcInfoDiv);},show:function(){var divStyle=this.oSmcInfoDiv.style;if(divStyle.visibility=='visible'){return false;}else{divStyle.visibility='visible';return true;}},hide:function(){var divStyle=this.oSmcInfoDiv.style;if(divStyle.visibility=='hidden'){return false;}else{divStyle.visibility='hidden';return true;}},mousedown:function(e){e.returnValue=false;e.cancelBubble=true;var oEvent=CMN_GetEvent(this.doc,e);CMN_PreventDefault(oEvent);}};