
// »ý¼º¸ñÀû : »óÇ°»ó¼¼ ÆäÀÌÁö³»ÀÇ ¼Ò½º º¸È£ ±â´É Ãß°¡¸¦ À§ÇØ

// isEmpty(field, error_msg) - ¹®ÀÚ¿­ ÀÔ·Â Ã¼Å©

var SourceProtectionMsg = ".";

function click() { 

	if ( event.button == 2) {						//¸¶¿ì½º ¹öÆ° ¹øÈ£´Ù 1Àº ¿ÞÂÊ 2´Â ¿À¸¥ÂÊ
		// alert(SourceProtectionMsg);	// ¹öÆ° ´­·¶À»¶§ ³ªÅ¸³ª´Â ¸Þ¼¼Áö
	} 

} 

function keydown() {
	
	//alert(event.keyCode);
	if( event.keyCode == 115 ) {
		event.returnValue = true;
	} else {
		event.returnValue = true;
	}
}

document.onmousedown = click; 
document.onkeydown = keydown;

if( document.oncontextmenu == null ) {
	window.document.oncontextmenu = new Function("return false"); // ¸¶¿ì½º ¿À¸¥ÂÊ ¹öÆ°À» ´­·¶À» ¶§ ¹Ù·Î°¡±â ¸Þ´º°¡ ³ªÅ¸³ªÁö ¾Êµµ·Ï ÇÔ.
	window.document.onselectstart = new Function("return false"); 
	window.document.ondragstart = new Function("return false"); 
}

