<!--
	/*
	¦£¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦«
	¦¢	ÆÄÀÏ¸í : /js/lin_standard.js
	¦¢	¸ñÀû : ¸ðµç À¥ ÆäÀÌÁö¿¡¼­ ÀÚ¹Ù½ºÅ©¸³Æ®¸¦ »ç¿ëÀ» À§ÇØ ±âº»ÀûÀ¸·Î Æ÷ÇÔµÇ¾î Á¦°øµÇ´Â ÇÔ¼ö ¸ñ·Ï
	¦¢	ÀÛ¼ºÀÚ : hoon
	¦¦¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦«
	*/
	
	function ThisPage(){
		// SCRIPT CONSTANTS	
		this.alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
		this.num = '0123456789';
		this.searchAvoid = '~`!@#$%^&*=+\|{}:;",.<>/?()[]' + "'";

		// base, title, defaultStatus & etc
		this.baseTarget = '_self';							// (string) ÆäÀÌÁö ±âº» ¸µÅ© ´ë»ó
		this.siteName =	'ºù±×·¹';				// (string) »çÀÌÆ®¸í
		this.company = 'ºù±×·¹';					// (string) È¸»ç¸í
		this.docTitle = 'ºù±×·¹ ::: °Ç°­°ú Çàº¹À» ÇÔ²² ³ª´©´Â ¹àÀº ¹Ì¼ÒÀÇ ¸Þ½ÅÀú';				// (string) ÆäÀÌÁö Á¦¸ñ ¹®ÀÚ¿­
		this.docStatus = 'ºù±×·¹';

		// ¸ÞÅ¸ ÅÂ±×¿¡ ´ëÇÑ ¼Ó¼º°ª ¸ñ·Ï
		this.charSet = 'euc-kr';					// (string) ÆäÀÌÁöÀÇ ÀÎÄÚµù ¹®ÀÚ¼¼Æ® :: ks_c_5601-1987
		this.author = 'lineage';					// (string) °³¹ßÀÚ ¼­¸í
		this.description = 'lineage';					// (string) »çÀÌÆ® ¼³¸í
		this.keywords = 'ºù±×·¹, binggrae, À½·á, ¾ÆÀÌ½ºÅ©¸²';					// (string) »çÀÌÆ® °Ë»ö Å°¿öµå		

		// PROPERTIES
		// Å¬¶óÀÌ¾ðÆ® ÇÃ·§Æû¿¡ ´ëÇÑ ¼Ó¼º°ª ¸ñ·Ï
		this.platform = window.navigator.platform;				// (string) Å¬¶óÀÌ¾ðÆ® ÇÃ·§Æû
		this.win = (this.platform.indexOf('Win')>-1);			// (boolean) À©µµ¿ìÁîÀÎÁöÀÇ ¿©ºÎ
		this.win16 = (this.platform.indexOf('Win16')>-1);		// (boolean) À©µµ¿ìÁî 16ºñÆ® Çü½ÄÀÎÁöÀÇ ¿©ºÎ
		this.win32 = (this.platform.indexOf('Win32')>-1);		// (boolean) À©µµ¿ìÁî 32ºñÆ® Çü½ÄÀÎÁöÀÇ ¿©ºÎ
		this.winCE = (this.platform.indexOf('WinCE')>-1);		// (boolean) À©µµ¿ìÁî CE ÀÎÁöÀÇ ¿©ºÎ
		
		// Å¬¶óÀÌ¾ðÆ® ºê¶ó¿ìÀúÀÇ Á¾·ù¿Í ¹öÀü¿¡ ´ëÇÑ ¼Ó¼º°ª ¸ñ·Ï
		this.ie = (navigator.userAgent.indexOf('MSIE')>-1);				// (boolean) ÀÍ½ºÇÃ·Î¾î ¿©ºÎ
		this.ns = (navigator.userAgent.indexOf('Netscape')>-1);		// (boolean) ³Ý½ºÄÉÀÌÇÁ ¿©ºÎ
		this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>-1);			// (boolean) ÀÍ½ºÇÃ·Î¾î 4 ¿©ºÎ
		this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>-1);			// (boolean) ÀÍ½ºÇÃ·Î¾î 5 ¿©ºÎ
		this.ie6 = (navigator.userAgent.indexOf('MSIE 6')>-1);			// (boolean) ÀÍ½ºÇÃ·Î¾î 6 ¿©ºÎ
		this.ns4 = (navigator.userAgent.indexOf('Netscape4')>-1);	// (boolean) ³Ý½ºÄÉÀÌÇÁ 4 ¿©ºÎ
		this.ns5 = (navigator.userAgent.indexOf('Netscape5')>-1);	// (boolean) ³Ý½ºÄÉÀÌÇÁ 5 ¿©ºÎ
		this.ns6 = (navigator.userAgent.indexOf('Netscape6')>-1);	// (boolean) ³Ý½ºÄÉÀÌÇÁ 6 ¿©ºÎ
		this.ver = 0;																// (integer) ºê¶ó¿ìÀú ¹öÀü
		if(this.ns4 || this.ie4) this.ver=4;
		if(this.ns5 || this.ie5) this.ver=5;
		if(this.ns6 || this.ie6) this.ver=6;
		
		this.setHeadTag = ThisPage_setHeadTag;		// ÆäÀÌÁöÀÇ ±âº» Çìµå ÅÂ±×¸¦ ¼³Á¤
		this.ThisPage_noControll = ThisPage_noControll;		// ÆäÀÌÁöÀÇ ¸¶¿ì½º Á¦ÇÑ
	}

	// ÆäÀÌÁöÀÇ ±âº» Çìµå ÅÂ±×¸¦ ¼³Á¤ / ThisPage ÇÔ¼öÀÇ ¸Þ½îµå·Î »ç¿ëµÇ¾îÁö´Â ÇÔ¼ö
	function ThisPage_setHeadTag(){
		var cmdStr = '';
		cmdStr += '<meta http-equiv="content-type" content="text/html; charset=' + this.charSet + '">';
		cmdStr += '<meta name="author" content="' + this.author + '">';
		cmdStr += '<meta name="description" content="' + this.description + '">';
		cmdStr += '<meta name="keywords" content="' + this.keywords + '">';
//					cmdStr += '<link rel="shortcut icon" href="' + this.shortcutIcon + '">';
//					cmdStr += '<link rel="stylesheet" type="text/css" href="' + this.cssCommon + '">';
//					cmdStr += '<base target="' + this.baseTarget + '">';
		cmdStr += '<title>' + this.docTitle + '</title>';
		document.write(cmdStr);
		window.defaultStatus = this.docStatus
		//top.window.document.title = '°Ç°­°ú Çàº¹À» ÇÔ²² ³ª´©´Â ¹àÀº ¹Ì¼ÒÀÇ ¸Þ½ÅÀú';
	}
	function ThisPage_noControll(){
		window.document.ondragstart = ondrag;
		window.document.onselectstart = onselect;
		window.document.oncontextmenu = oncontext;
	}
	function ondrag(){
		return false;
	}
	function onselect(){
		return false;
	}
	function oncontext(){
		alert('¸¶¿ì½º ¿À¸¥ÂÊ¹öÆ°À» ÀÌ¿ëÇÒ ¼ö ¾ø½À´Ï´Ù!');
		return false;
	}

//-->
