
	/**
		¸¶¿ì½º ¿À¸¥ÂÊ¹öÆ° Á¦ÇÑ
	*/
	function click() {
		if ((event.button==2) || (event.button==3)) {
			alert('º¸¾È»ó ¸¶¿ì½º ¿À¸¥ÂÊ ¹öÆ°Àº »ç¿ëÇÒ¼ö ¾ø½À´Ï´Ù.');
		}
	}

	//document.onmousedown=click;


	/**
		ÇÏ´Ü »óÅÂ¹Ù ¹®±¸ ÁöÁ¤

	*/
	var status_text = '»óÅÂ¹Ù°íÁ¤¹®±¸';
	function showstatus()
	{
	window.status = status_text;
	timerID= setTimeout('showstatus()', 0);
	}
	//showstatus();

	function window_open(url, target, width, height)
	{
		var left        = (screen.width) ? (screen.width-width)/2 : 0;
		var top         = (screen.height) ? (screen.height-height)/2 : 0;
		var _wo = window.open(url, target, 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top='+top+',left='+left+',width=' + width + ',height=' + height);
		_wo.focus();
	}	// function

	function window_open_fix(url, target, width, height)
	{
		var left        = (screen.width) ? (screen.width-width)/2 : 0;
		var top         = (screen.height) ? (screen.height-height)/2 : 0;
		var _wo = window.open(url, target, 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=no,top='+top+',left='+left+',width=' + width + ',height=' + height);
		_wo.focus();
	}	// function

	function window_open_menu(url, target, width, height)
	{
		var left        = (screen.width) ? (screen.width-width)/2 : 0;
		var top         = (screen.height) ? (screen.height-height)/2 : 0;
		var _wo = window.open(url, target, 'toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,top='+top+',left='+left+',width=' + width + ',height=' + height);
		_wo.focus();
	}	// function
