	function LTrim(s) {
		return s.replace(/^\s+/g,"");
	}

	function RTrim(s) {
		return s.replace(/\s+$/g,"");
	}

	function Trim(s) {
		return LTrim(RTrim(s));
	}

	function Len(s) {
		var s1 = Trim(s);
		return s1.length;
	}

	function num_only()
	{
		if(((event.keyCode<48) || (event.keyCode>57)) && (event.keyCode != 46)) {
		event.returnValue=false;
		}
	}

	function CheckNum(s) {
		if (Len(s) == 0) return false;

		for (i=0; i < s.length; i++) {
			if (!(s.charAt(i) >= "0" && s.charAt(i) <= "9")) 
				return false;
		}

		return true;
	}

	function CheckStrNum(s) {
		if (Len(s) == 0) return false;

		for (i=0; i < s.length; i++) {
			if (!((s.charAt(i) >= "a" && s.charAt(i) <= "z") ||
			  (s.charAt(i) >= "A" && s.charAt(i) <= "Z") ||
			  (s.charAt(i) >= "0" && s.charAt(i) <= "9")))
				return false;
		}

		return true;
	}

	function CheckExceptStrNum(s) {
		if (Len(s) == 0) return false;

		for (i=0; i < s.length; i++) {
			if (!((s.charAt(i) >= "a" && s.charAt(i) <= "z") ||
			  (s.charAt(i) >= "A" && s.charAt(i) <= "Z") ||
			  (s.charAt(i) >= "0" && s.charAt(i) <= "9") ||
			  (s.charAt(i) == "_"))) 
				return false;
		}

		return true;
	}

	function CheckSpace(s) {
		if (Len(s) == 0) return false;

		for (i=0; i < s.length; i++) {
			if (s.charAt(i) == " ") 
				return false;
		}

		return true;
	}

	function toTimeString(date) {
		var year  = date.getFullYear();
		var month = date.getMonth() + 1; // 1¿ù 0ºÎÅÍ ½ÃÀÛ
		var day   = date.getDate();
		var hour  = date.getHours();
		var min   = date.getMinutes();
		var sec = date.getSeconds();

		if (("" + month).length == 1) { month = "0" + month; }
		if (("" + day).length   == 1) { day   = "0" + day;   }
		if (("" + hour).length  == 1) { hour  = "0" + hour;  }
		if (("" + min).length   == 1) { min   = "0" + min;   }

		return ("" + year + month + day + hour + min + sec)
	}

	function IsImageFile(fileName) {
		if (Len(fileName) == 0) return false;
		
		var fileSuffix = fileName.substring(fileName.lastIndexOf(".") + 1).toLowerCase();

		if ("jpg" == fileSuffix || "jpeg" == fileSuffix  || "gif" == fileSuffix || "bmp" == fileSuffix) 
			return true;
		else 
			return false;
	}

	function namosw_exchange_src() { 
		str = namosw_exchange_src.arguments[0];
		str = (navigator.appName == 'Netscape') ? 'document.' + str : 'document.all.' + str;
		img = eval(str);
		if (img) {
			if (img.ori_src == null) {
				img.ori_src = img.src;
				img.src     = namosw_exchange_src.arguments[1];
			} else {
				var temp    = img.src;
				img.src     = img.ori_src;
				img.ori_src = temp;
			}
		} 
	}

	function namosw_preload_img() { 
		var img_list = namosw_preload_img.arguments;
		if (document.preloadlist == null) document.preloadlist = new Array();

		var top = document.preloadlist.length;

		for (var i=0; i < img_list.length; i++) {
			document.preloadlist[top+i]     = new Image;
			document.preloadlist[top+i].src = img_list[i];
		} 
	}

	function GetFixedImg(ID, ImgPath, MaxWidth, MaxHeight) {
		var oImg = new Image();

		oImg.src = ImgPath;

		var imgWidth = oImg.width;

		var imgHeight = oImg.height;
		var maxThumbnailWidth = MaxWidth;
		var maxThumbnailHeight = MaxHeight;

		if (imgWidth  > imgHeight) {	 
			if (imgWidth > maxThumbnailWidth) {
				imgWidth = maxThumbnailWidth;
				imgHeight = parseInt((maxThumbnailWidth * oImg.height) / oImg.width);
			}
		} else {
			if (imgHeight > maxThumbnailHeight) {
				imgHeight = maxThumbnailHeight;
				imgWidth = parseInt((maxThumbnailHeight * oImg.width) / oImg.height);
			}
		}

		if (imgWidth == 0 || imgHeight == 0) {
			document.getElementById(ID).innerHTML = '<img src=' + oImg.src + ' width=' + MaxWidth + '>';
		} else {
			document.getElementById(ID).innerHTML = '<img src=' + oImg.src + ' width=' + imgWidth + ' height=' + imgHeight + '>';
		}
	}

	function CheckEmail(s) {
		var strEmail = s;
		var invalidChars = "~`!@#$%^&*()+=|\<,>?/'";
		
		if (Len(strEmail) == 0) {
			alert('\nEmail À» ÀÔ·ÂÇÏ¿©ÁÖ¼¼¿ä');
			return false;
		}
		
		if (strEmail.indexOf("@") < 1) {
			alert('\nEmail Çü½ÄÀÌ Æ²·È½À´Ï´Ù.\nÇü½Ä : °èÁ¤ÀÌ¸§@¼­¹ö¸í');
			return false;
		}
		
		var atPos = strEmail.indexOf("@", 1);
		var strID = strEmail.substring(0, atPos);
		var strServerName = strEmail.substring(atPos + 1);
		
		for(var i=0; i<invalidChars.length; i++ ) {
			var strBadChar = invalidChars.charAt(i);
			
			if (strID.indexOf(strBadChar) > -1) {
				alert('\nEmail ÁÖ¼Ò°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù.');
				return false;
			}	
		}
		
		if (strServerName.indexOf(".") < 1) {
			alert('\nEmail ÁÖ¼Ò°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù.');
			return false;
		}	
		
		for(var i=0; i<invalidChars.length; i++ ) {
			var strBadChar = invalidChars.charAt(i);
			
			if (strServerName.indexOf(strBadChar) > -1) {
				alert('\nEmail ÁÖ¼Ò°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù.');
				return false;
			}	
		}
		
		return true;
	}	

	function GoSurvey(theForm) {
		for (var i, i = 0; i < theForm.item_id.length; i++) {
			if (theForm.item_id[i].checked) break;
		}
		if (i == theForm.item_id.length) {
			alert('ÅõÇ¥ÇÒ Ç×¸ñÀ» ¼±ÅÃÇÏ¿© ÁÖ½Ê½Ã¿ä.');
			return;
		}
		
		theForm.submit();
	}

	function RemoveScript(s) {

		var content = s;
		var regexp;


		regexp = /\r\n/g
		content = content.replace(regexp, "@@CRLF@@");

		regexp = /<\s*script.+?<\/\s*script\s*>/gi
		content = content.replace(regexp, "");

		regexp = /@@CRLF@@/g
		content = content.replace(regexp, "\r\n");

		regexp = /^\r\n/g
		content = content.replace(regexp, "");

		regexp = /onload=/gi
		content = content.replace(regexp, "");


		return content;

	}

	function RemoveStyleSheet(s) {

		var content = s;
		var regexp;
		
		regexp = /\r\n/g
		content = content.replace(regexp, "@@CRLF@@");

		regexp = /<\s*style.+?<\/\s*style\s*>/gi
		content = content.replace(regexp, "");

		regexp = /@@CRLF@@/g
		content = content.replace(regexp, "\r\n");

		regexp = /^\r\n/g
		content = content.replace(regexp, "");

		return content;

	}

	function img_resize(id, max_width) { 
		// content ¾ÆÀÌµð ³»ÀÇ ¸ðµç ÀÌ¹ÌÁö Å©±â°¡ max_width º¸´Ù Å©¸é max_width·Î ¸®»çÀÌÁî. 
		var content = document.getElementById(id); 
		if (!content) return;

		var img = content.getElementsByTagName("img"); 

		for(i=0; i<img.length; i++) { 
			if ( eval('img[' + i + '].width > max_width') ) { 
				var img_height = parseInt((max_width * eval('img[' + i + '].height')) / eval('img[' + i + '].width'));
				
				img[i].style.width = max_width;
				img[i].style.height = img_height;
			} 
		} 
	} 

	//¼ýÀÚ¿¡ ","³Ö±â
	function FormatNumber(value) {
		if(!isNaN(value)) {
			valueS = value.toString();
			var len = valueS.length;
			var valueN = "";

			for(var i=len;i>0;i--) {
				if(i!=len && i%3 == len%3) {
					valueN = ","+valueN;
					valueN = valueS.substring(i,i-1).concat(valueN);
				} else {
					valueN = valueS.substring(i,i-1).concat(valueN);
				}
			}
			return valueN;
		}
	}

	//¼ýÀÚ¿¡ ","»©±â
	function FormatUnNumber(value){
		if (value != '') {
			return  value.replace(/,/g,''); 
		} else {
			return '';
		}
	}

	/* ---------------------------------------------------------------------------------------------------------------------------------------------
	Round
	--------------------------------------------------------------------------------------------------------------------------------------------- */
	function NiftyCheck(){
		if(!document.getElementById || !document.createElement)
		
		return(false);

		var b=navigator.userAgent.toLowerCase();
		if(b.indexOf("msie 5")>0 && b.indexOf("opera")==-1)
			return(false);
		return(true);
	}

	// Å×µÎ¸®¸¸ ¶ó¿îµå Ã³¸®
	function BorderRounded(selector,bk,color){
		if(!NiftyCheck()) return;

		var v=getElementsBySelector(selector);
		var l=v.length;
		var html = '';

		for(var i, i=0;i<l;i++){
			html += '<table width=\"100%\" celllpadding=\"0\" cellspacing=\"0\"><tr><td>';
			html += '<div class=rnd style=\'color: ' + color + '; border-color: ' + color + ';\'>';
			html += '<i class=rnd1 style=\'border-color: ' + color + '; background: ' + color + '\'></i>';
			html += '<i class=rnd2 style=\'border-color: ' + color + '; background: ' + bk + ';\'></i>';
			html += '<i class=rnd3 style=\'border-color: ' + color + '; background: ' + bk + ';\'></i>';
			html += '<i class=rnd4 style=\'border-color: ' + color + '; background: ' + bk + ';\'></i>';
			html += '<div class=rnd5 style=\'border-color: ' + color + '; background: ' + bk + ';\'>';
			html += v[i].innerHTML;
			html += '</div>';
			html += '<i class=rnd4 style=\'border-color: ' + color + '; background: ' + bk + ';\'></i>';
			html += '<i class=rnd3 style=\'border-color: ' + color + '; background: ' + bk + ';\'></i>';
			html += '<i class=rnd2 style=\'border-color: ' + color + '; background: ' + bk + ';\'></i>';
			html += '<i class=rnd1 style=\'border-color: ' + color + '; background: ' + color + ';\'></i>';
			html += '</div>';
			html += '</td></td></table>';

			v[i].innerHTML = html;
		}
	}

	// ÀüÃ¼¸¦ ¶ó¿îµå Ã³¸®
	function Rounded(selector,bk,color,size){
		var i;
		var v=getElementsBySelector(selector);
		var l=v.length;

		for(i=0;i<l;i++){
			v[i].style.backgroundColor = color;
			AddTop(v[i],bk,color,size);
			AddBottom(v[i],bk,color,size);
		}
	}

	function AddTop(el,bk,color,size){
		var i;
		var d=document.createElement("b");
		var cn="r";
		var lim=4;
		
		if(size && size=="small"){ cn="rs"; lim=2}
		
		d.className="rtop";
		d.style.backgroundColor=bk;
		for(i=1;i<=lim;i++){
			var x=document.createElement("b");
			x.className=cn + i;
			x.style.backgroundColor=color;
			d.appendChild(x);
		}
		el.insertBefore(d,el.firstChild);
	}

	function AddBottom(el,bk,color,size){
		var i;
		var d=document.createElement("b");
		var cn="r";
		var lim=4;

		if(size && size=="small"){ cn="rs"; lim=2}
		
		d.className="rbottom";
		d.style.backgroundColor=bk;
		
		for(i=lim;i>0;i--){
			var x=document.createElement("b");
			x.className=cn + i;
			x.style.backgroundColor=color;
			d.appendChild(x);
		}
		el.appendChild(d,el.firstChild);
	}

	function getElementsBySelector(selector){
		var i;
		var s=[];
		var selid="";
		var selclass="";
		var tag=selector;
		var objlist=[];
		if(selector.indexOf(" ")>0){  //descendant selector like "tag#id tag"
			s=selector.split(" ");
			var fs=s[0].split("#");
			if(fs.length==1) return(objlist);
			return(document.getElementById(fs[1]).getElementsByTagName(s[1]));
		}
		if(selector.indexOf("#")>0){ //id selector like "tag#id"
			s=selector.split("#");
			tag=s[0];
			selid=s[1];
		}
		if(selid!=""){
			objlist.push(document.getElementById(selid));
			return(objlist);
		}
		if(selector.indexOf(".")>0){  //class selector like "tag.class"
			s=selector.split(".");
			tag=s[0];
			selclass=s[1];
		}
		var v=document.getElementsByTagName(tag);  // tag selector like "tag"
		if(selclass=="")
			return(v);
		for(i=0;i<v.length;i++){
			if(v[i].className==selclass){
				objlist.push(v[i]);
			}
		}
		return(objlist);
	}

	/* ---------------------------------------------------------------------------------------------------------------------------------------------
	ÃÊ±âÈ­ ÇÔ¼ö
	--------------------------------------------------------------------------------------------------------------------------------------------- */

	window.onload=function (){
		if (document.getElementById("content_area")) {
			if (readCookie("font_size") == "null") {
				document.getElementById("content_area").style.fontSize = "14px";
				createCookie("font_size", "14px", 365);
			} else {
				document.getElementById("content_area").style.fontSize = readCookie("font_size");
				createCookie("font_size", readCookie("font_size"), 365);
			}
		}

		try {
			SetRound();
		} catch(e) {
				return;
		}
	}

	/* ---------------------------------------------------------------------------------------------------------------------------------------------
	Etc
	--------------------------------------------------------------------------------------------------------------------------------------------- */

	function flash(c,d,e) {
		var flash_tag = "";
		flash_tag = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
		flash_tag +='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ';
		flash_tag +='WIDTH="'+c+'" HEIGHT="'+d+'" >';
		flash_tag +='<param name="movie" value="'+e+'">';
		flash_tag +='<param name="quality" value="high">';
		flash_tag +='<param name="wmode" value="transparent">';
		flash_tag +='<embed src="'+e+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
		flash_tag +='type="application/x-shockwave-flash"  WIDTH="'+c+'" HEIGHT="'+d+'"></embed>';
		flash_tag +='</object>';
		document.write(flash_tag);
	}


	function ShowMenu(type) {
		document.getElementById("sub_menu_news").style.display = 'none';
		document.getElementById("sub_menu_discuss").style.display = 'none';
		document.getElementById("sub_menu_photo").style.display = 'none';
		document.getElementById("sub_menu_sutra").style.display = 'none';
		document.getElementById("sub_menu_kamma").style.display = 'none';
		document.getElementById("sub_menu_directory").style.display = 'none';
		document.getElementById("sub_menu_" + type).style.display = 'block';
		td_news.style.backgroundImage = "url('')"
		td_discuss.style.backgroundImage = "url('')"
		td_photo.style.backgroundImage = "url('')"
		td_sutra.style.backgroundImage = "url('')"
		td_kamma.style.backgroundImage = "url('')"
		td_directory.style.backgroundImage = "url('')"
		eval("td_" + type).style.backgroundImage = "url('/images/header/bg_menu_a2.gif')"
	}

	function CheckSearch() {
		var theForm = document.getElementById("frm_search");

		if (Len(theForm.search_value.value) == 0) {
			alert('°Ë»ö¾î¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿ä.');
			theForm.search_value.focus();
			return false;
		}
		var vSearchValue = theForm.search_value.value;
		if (
			vSearchValue=='about' ||
			vSearchValue=='1' ||
			vSearchValue=='after' ||
			vSearchValue=='2' ||
			vSearchValue=='all' ||
			vSearchValue=='also' ||
			vSearchValue=='3' ||
			vSearchValue=='an' ||
			vSearchValue=='4' ||
			vSearchValue=='and' ||
			vSearchValue=='5' ||
			vSearchValue=='another' ||
			vSearchValue=='6' ||
			vSearchValue=='any' ||
			vSearchValue=='7' ||
			vSearchValue=='are' ||
			vSearchValue=='8' ||
			vSearchValue=='as' ||
			vSearchValue=='9' ||
			vSearchValue=='at' ||
			vSearchValue=='0' ||
			vSearchValue=='be' ||
			vSearchValue=='$' ||
			vSearchValue=='because' ||
			vSearchValue=='been' ||
			vSearchValue=='before' ||
			vSearchValue=='being' ||
			vSearchValue=='between' ||
			vSearchValue=='both' ||
			vSearchValue=='but' ||
			vSearchValue=='by'||
			vSearchValue=='came' ||
			vSearchValue=='can' ||
			vSearchValue=='come' ||
			vSearchValue=='could' ||
			vSearchValue=='did' ||
			vSearchValue=='do' ||
			vSearchValue=='each' ||
			vSearchValue=='for' ||
			vSearchValue=='from' ||
			vSearchValue=='get' ||
			vSearchValue=='got' ||
			vSearchValue=='has' ||
			vSearchValue=='had' ||
			vSearchValue=='he' ||
			vSearchValue=='have' ||
			vSearchValue=='her' ||
			vSearchValue=='here' ||
			vSearchValue=='him' ||
			vSearchValue=='himself' ||
			vSearchValue=='his' ||
			vSearchValue=='how' ||
			vSearchValue=='if' ||
			vSearchValue=='in' ||
			vSearchValue=='into' ||
			vSearchValue=='is' ||
			vSearchValue=='it' ||
			vSearchValue=='like' ||
			vSearchValue=='make' ||
			vSearchValue=='many' ||
			vSearchValue=='me' ||
			vSearchValue=='might' ||
			vSearchValue=='more' ||
			vSearchValue=='most' ||
			vSearchValue=='much' ||
			vSearchValue=='must' ||
			vSearchValue=='my' ||
			vSearchValue=='never' ||
			vSearchValue=='now' ||
			vSearchValue=='of' ||
			vSearchValue=='on' ||
			vSearchValue=='only' ||
			vSearchValue=='or' ||
			vSearchValue=='other' ||
			vSearchValue=='our' ||
			vSearchValue=='out' ||
			vSearchValue=='over' ||
			vSearchValue=='said' ||
			vSearchValue=='same' ||
			vSearchValue=='see' ||
			vSearchValue=='should' ||
			vSearchValue=='since' ||
			vSearchValue=='some' ||
			vSearchValue=='still' ||
			vSearchValue=='such' ||
			vSearchValue=='take' ||
			vSearchValue=='than' ||
			vSearchValue=='that' ||
			vSearchValue=='the' ||
			vSearchValue=='their' ||
			vSearchValue=='them' ||
			vSearchValue=='then' ||
			vSearchValue=='there' ||
			vSearchValue=='these' ||
			vSearchValue=='they' ||
			vSearchValue=='this' ||
			vSearchValue=='those' ||
			vSearchValue=='through' ||
			vSearchValue=='to' ||
			vSearchValue=='too' ||
			vSearchValue=='under' ||
			vSearchValue=='up' ||
			vSearchValue=='very' ||
			vSearchValue=='was' ||
			vSearchValue=='way' ||
			vSearchValue=='we' ||
			vSearchValue=='well' ||
			vSearchValue=='were' ||
			vSearchValue=='what' ||
			vSearchValue=='where' ||
			vSearchValue=='which' ||
			vSearchValue=='while' ||
			vSearchValue=='who' ||
			vSearchValue=='with' ||
			vSearchValue=='would' ||
			vSearchValue=='you' ||
			vSearchValue=='your' ||
			vSearchValue=='a' ||
			vSearchValue=='b' || 
			vSearchValue=='c' || 
			vSearchValue=='d' || 
			vSearchValue=='e' || 
			vSearchValue=='f' || 
			vSearchValue=='g' || 
			vSearchValue=='h' || 
			vSearchValue=='i' || 
			vSearchValue=='j' || 
			vSearchValue=='k' || 
			vSearchValue=='l' || 
			vSearchValue=='m' || 
			vSearchValue=='n' || 
			vSearchValue=='o' || 
			vSearchValue=='p' || 
			vSearchValue=='q' || 
			vSearchValue=='r' || 
			vSearchValue=='s' || 
			vSearchValue=='t' || 
			vSearchValue=='u' || 
			vSearchValue=='v' || 
			vSearchValue=='w' || 
			vSearchValue=='x' || 
			vSearchValue=='y' || 
			vSearchValue=='z'
		) {
			alert('°Ë»öÀÌ ºÒ°¡ÇÑ Å°¿öµå ¶Ç´Â Full-Text °Ë»öÀÌ ºÒ°¡ÇÑ Noise Å°¿öµå ÀÔ´Ï´Ù.\n\n´Ù¸¥ ¹®ÀÚ¿­·Î °Ë»öÀ» ¼öÇàÇØ ÁÖ½Ã±æ ºÎÅ¹ µå¸³´Ï´Ù.');
			theForm.search_value.focus();
			return false;
		}

		return true;
	}

	function OpenSchedule() {
		schedule = window.open('/schedule.asp', 'schedule', 'left=' + (screen.availWidth - 640) / 2 + ',top=10,width=640,height=700');
		schedule.focus();
		return;
	}

	function ViewSchedule(year, month, day) {
		schedule = window.open('/schedule.asp?year=' + year + '&month=' + month + '&day=' + day, 'schedule', 'left=' + (screen.availWidth - 640) / 2 + ',top=10,width=640,height=700');
		schedule.focus();
		return;
	}

	function ChgTab(type) {
		if (type == 1) {
			document.getElementById("editorial").style.display = 'none';
			document.getElementById("notice").style.display = 'block';
		} else if (type == 2) {
			document.getElementById("editorial").style.display = 'block';
			document.getElementById("notice").style.display = 'none';
		} else if (type == 3){
			document.getElementById("cafe_list").style.display = 'block';
			document.getElementById("blog_list").style.display = 'none';
		} else if (type == 4){
			document.getElementById("cafe_list").style.display = 'none';
			document.getElementById("blog_list").style.display = 'block';
		}
	}

	function ChgTab_sin(type) {
		if (type == 5) {
			document.getElementById("sindo_1").style.display = 'none';
			document.getElementById("sindo_2").style.display = 'block';
		} else if (type == 6) {
			document.getElementById("sindo_1").style.display = 'block';
			document.getElementById("sindo_2").style.display = 'none';
		}
	}


	function createCookie(name,value,days) {
		if (days) {
			var date = new Date();
			date.setTime(date.getTime()+(days*24*60*60*1000));
			var expires = "; expires="+date.toGMTString();
		}
		else expires = "";
		document.cookie = name+"="+value+expires+"; path=/";
	}

	function readCookie(name) {
		var nameEQ = name + "=";
		var ca = document.cookie.split(';');
		for(var i=0;i < ca.length;i++) {
			var c = ca[i];
			while (c.charAt(0)==' ') c = c.substring(1,c.length);
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
		}
		return null;
	}

	function SetFont(type) {
		if (type == "plus") {
			switch (readCookie("font_size")) {
				case "12px" :
					document.getElementById("content_area").style.fontSize = "14px";
					createCookie("font_size", "14px", 365);
					break;
				case "14px" :
					document.getElementById("content_area").style.fontSize = "16px";
					createCookie("font_size", "16px", 365);
					break;
				case "16px" :
					document.getElementById("content_area").style.fontSize = "18px";
					createCookie("font_size", "18px", 365);
					break;
				case "18px" :
					document.getElementById("content_area").style.fontSize = "20px";
					createCookie("font_size", "20px", 365);
					break;
			}
		} else if (type == "minus") {
			switch (readCookie("font_size")) {
				case "14px" :
					document.getElementById("content_area").style.fontSize = "12px";
					createCookie("font_size", "12px", 365);
					break;
				case "16px" :
					document.getElementById("content_area").style.fontSize = "14px";
					createCookie("font_size", "14px", 365);
					break;
				case "18px" :
					document.getElementById("content_area").style.fontSize = "16px";
					createCookie("font_size", "16px", 365);
					break;
				case "20px" :
					document.getElementById("content_area").style.fontSize = "18px";
					createCookie("font_size", "18px", 365);
					break;
			}
		} else {
			document.getElementById("content_area").style.fontSize = "12px";
			createCookie("font_size", "12px", 365);
		}
	}

	function Print(CatSeq, NewsSeq) {
		print_win = window.open('/common/news/print.asp?cat_seq=' + CatSeq + '&news_seq=' + NewsSeq, 'print_win', 'scrollbars=yes,left=217,top=' + (screen.height - 550) / 2 + ',width=758,height=550');
		print_win.focus();
		return;
	return;
	}
