	function disableselect(e)
	{
		return false
	}

	function reEnable(){
		return true
	}

	// IE4+ ¿ë ÄÚµå
	document.onselectstart=new Function ("return false")

	// NS6 ¿ë ÄÚµå
	if (window.sidebar){
		document.onmousedown=disableselect
		document.onclick=reEnable
	}