/*
 * Description		: script for site skin
 * Author			: Kim Dong-kyu (superkdk@tt.co.kr)
 * Last Modified	: 2004.11.29
 */
/* °Ô½Ã¹° °ü·Ã script */
function read_notice_article(db, idx, click, pwidth, pheight) {
	if(click==0) {
		location.href = "ttboard.cgi?act=read&db="+ db+"&idx=" + idx;
	} else if(click==1) {
		window.open("ttboard.cgi?act=popup&db="+ db+"&idx=" + idx, "", "width=" + pwidth + ", height=" + pheight + ", scrollbars=1, resizable=1");
	} else if(click==2) {
		window.open("ttboard.cgi?act=read&db="+ db+"&idx=" + idx, "", "width=" + pwidth + ", height=" + pheight + ", scrollbars=1, resizable=1");
	}
}

function view_notice_image(imgpath) {
	url = "ttsite.cgi?object=common/popupimage&imgpath=" + imgpath;
	viewWin = window.open(url,'', 'width=500, height=400, scrollbars=yes, resizable=yes');
}

function auto_notice_popup(db, idx, pwidth, pheight) {
	window.open("ttboard.cgi?act=popup&db=" + db + "&idx=" + idx + "&auto_popup=1", "", "width=" + pwidth + ", height=" + pheight + ", scrollbars=1, resizable=1");
}

function site_search() {
	if(site_search_form.s_key.value == "") {
		alert("°Ë»öÇÒ ´Ü¾î¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
		site_search_form.s_key.focus();
		return;
	}

	site_search_form.submit();
}

// Comment Show/Hide
function show_cmt_more() {
	obj = document.getElementById("recentlist")
	sobj = document.getElementById("cmtStat")
	if(obj.style.height=="100px") {
	  obj.style.height = "100%";
//	  sobj.innerHTML = "Hide";
	} else {
	  obj.style.height = "100px";
//	  sobj.innerHTML = "Show";
	}
}

/* ÅÂ±×¸¦ ÀÔ·Â ¹Þ¾Æ¼­ Á÷Á¢ Ãâ·Â */
function docwrite(str) {
	document.write(str);
}

/****************************************************
 ÇÃ·¡½Ã Ãâ·Â ÇÔ¼ö 
 ¾ÆÀÌµð, URL, Æø, ³ôÀÌ, wmode(1ÀÌ¸é transparent)¸¸ ÀÔ·Â¹Þ¾Æ¼­ Ãâ·Â
 »ç¿ë¹ý : 
 <script language="javascript"> FlashCommon( "idF1", "main_flash.swf", "370", "236", "0" ); </script>
*****************************************************/
function FlashCommon( id, ObjUrl, vWidth, vHeight, wMode ) {

	var str = "";
	str  = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + vWidth + '" height="' + vHeight + ' id="' + id + '" align="middle">';
	str += '<param name="movie" value="' + ObjUrl + '">';
	str += '<param name="quality" value="high">';
	if(wMode==1) str += '<param name="wmode" value="transparent">';
	str += '<embed src="' + ObjUrl + '" quality="high" ';
	if(wMode==1) str += 'wmode="transparent" ';
	str += 'width="' + vWidth + '" height="' + vHeight + '" id="' + id + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
	str += '</object>';

	document.writeln(str);
}

/****************************************************
 ¹Ìµð¾î Ãâ·Â ÇÔ¼ö 
 ¾ÆÀÌµð, URL, Æø, ³ôÀÌ¸¸ ÀÔ·Â¹Þ¾Æ¼­ Ãâ·Â
 »ç¿ë¹ý : 
 <script language="javascript"> MediaCommon( "idM1", "movie.wmv", "320", "240" ); </script>
*****************************************************/
function MediaCommon( id, ObjUrl, vWidth, vHeight ) {

	var str = "";
	str  = '<embed id="' + id + '" src="' + ObjUrl + '" width="' + vWidth + '" height="' + vHeight + '"  type=application/x-shockwave-flash></embed>';
	document.writeln(str);
}