/* ÅØ½ºÆ®Å¥ºê¿¡¼­ µû¿È */

function Standardizer(){};
Standardizer.prototype.isIE=(navigator.userAgent.indexOf("MSIE")>=0);
Standardizer.prototype.isFirefox=(navigator.userAgent.indexOf("Firefox")>=0);
Standardizer.prototype.isSafari=(navigator.userAgent.indexOf("Safari")>=0);
Standardizer.prototype.isOpera=(!Standardizer.prototype.isIE&&(navigator.userAgent.indexOf("Opera")>=0));
Standardizer.prototype.isMozilla=(!Standardizer.prototype.isIE&&!Standardizer.prototype.isFirefox&&!Standardizer.prototype.isSafari&&!Standardizer.prototype.isOpera&&(navigator.userAgent.indexOf("Mozilla")>=0));
Standardizer.prototype.addEventListener=function(object){if(object.addEventListener)return;
	object.addEventListener=function addEventListener(type,listener,useCapture){this.attachEvent("on"+type,listener);};};
Standardizer.prototype.removeEventListener=function(object){if(object.removeEventListener)return;
	object.removeEventListener=function removeEventListener(type,listener,useCapture){this.detachEvent("on"+type,listener);};};
Standardizer.prototype.event=function(event){if(window.event){event=window.event;
	if(event.target)return event;
	if(event.srcElement)event.target=event.srcElement;
	if(event.preventDefault==undefined)event.preventDefault=function(){this.returnValue=false;};};
	return event;};
Standardizer.prototype.getScrollTop=function(){return(this.isSafari?document.body.scrollTop:document.documentElement.scrollTop);};
Standardizer.prototype.getScrollLeft=function(){return(this.isSafari?document.body.scrollLeft:document.documentElement.scrollLeft);};
var STD=new Standardizer();
STD.addEventListener(window);




  document.oncontextmenu = new Function ("return false");
  document.ondragstart = new Function ("return false");
  document.onselectstart = new Function ("return false");
  if (STD.isFirefox ) {
    var preventCopy = function (e) {
      if (document.body.style.MozUserSelect != undefined) {
        document.body.style.MozUserSelect = "none";
      }
    }
    var preventF = function (e) {
      e.preventDefault();
      e.stopPropagation();
      return false;
    };
    window.oncontextmenu = preventF;
    window.addEventListener("load", preventCopy, false);
  }

