
	/**
		마우스 오른쪽버튼 제한
	*/
	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)
	{
		window.open(url, target, 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height);
	}	// function


	function window_open_menu(url, target, width, height)
	{
		window.open(url, target, 'toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height);
	}	// function


	function flashView(s,w,h,d,t){
			document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width="+w+" height="+h+" id="+d+"><param name=wmode value="+t+" /><param name=movie value="+s+" /><param name=quality value=high /><embed src="+s+" quality=high wmode="+t+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+w+" height="+h+"></embed></object>");
	}	// function


