/* Å¸ÀÌÆ² */
document.title = "ÄÉ¹Ì½ºÅä¸® Chemi Story";

/* ·Ñ¿À¹ö ÀÌ¹ÌÁö */
function menuOn(imgEl) {
	imgEl.src = imgEl.src.replace("_off.gif", "_on.gif");
}

function menuOut(imgEl) {
	imgEl.src = imgEl.src.replace("_on.gif", "_off.gif");
}


/* definition list toggle */
function initToggle(tabContainer) {
	triggers = tabContainer.getElementsByTagName("a");

	for(i = 0; i < triggers.length; i++) {
		if (triggers.item(i).href.split("#")[1])
			triggers.item(i).targetEl = document.getElementById(triggers.item(i).href.split("#")[1]);

		if (!triggers.item(i).targetEl)
			continue;

		triggers.item(i).targetEl.style.display = "none";
		triggers.item(i).onclick = function () {
			if (tabContainer.current == this) {
				this.targetEl.style.display = "none";
				tabContainer.current = null;
			} else {
				if (tabContainer.current) {
					tabContainer.current.targetEl.style.display = "none";
				}
				this.targetEl.style.display = "block";
				tabContainer.current = this;
			}
			return false;
		}
	}
}



/* Tab Content */
function initTabMenu(tabContainerID) {
	var tabContainer = document.getElementById(tabContainerID);
	var tabAnchor = tabContainer.getElementsByTagName("a");
	var i = 0;

	for(i=0; i<tabAnchor.length; i++) {
		if (tabAnchor.item(i).className == "tab")
			thismenu = tabAnchor.item(i);
		else
			continue;

		thismenu.container = tabContainer;
		thismenu.targetEl = document.getElementById(tabAnchor.item(i).href.split("#")[1]);
		thismenu.targetEl.style.display = "none";
		thismenu.imgEl = thismenu.getElementsByTagName("img").item(0);
		thismenu.onclick = function tabMenuClick() {
			currentmenu = this.container.current;
			if (currentmenu == this)
				return;

			if (currentmenu) {
				currentmenu.targetEl.style.display = "none";
				if (currentmenu.imgEl) {
					currentmenu.imgEl.src = currentmenu.imgEl.src.replace("_on.gif", "_off.gif");
				} else {
					currentmenu.className = currentmenu.className.replace("on", "");
				}
			}

			this.targetEl.style.display = "block";
			if (this.imgEl) {
				this.imgEl.src = this.imgEl.src.replace("_off.gif", "_on.gif");
			} else {
				this.className += " on";
			}
			this.container.current = this;

			return false;
		};

		if (!thismenu.container.first)
			thismenu.container.first = thismenu;
	}
	if (tabContainer.first)
		tabContainer.first.onclick();
}

/* ½½¶óÀÌµå ÄÁÅÙÃ÷ */
function initScrollContent(container, prevBtn, nextBtn) {
	var currentContentPage = 1;
	var contentElCount = 0;
	var content_x = 0;
	var slideContentTo = 0;
	var contentWidth = 555;
	var isImageBtn = true;
	var cont = container.getElementsByTagName("div");

	for (i=0; i<cont.length; i++) {
		if (cont[i].className == "slideContent") {
			contentElCount++;
			cont[i].style.left = contentWidth * (contentElCount - 1) + "px";
		}
	}

	setSlideBtn();

	function setSlideBtn() {
		if (contentElCount == 1) {
			setPrevBtn("off");
			setNextBtn("off");
		} else if (parseInt(currentContentPage) == 1) {
			setPrevBtn("off");
			setNextBtn("on");
		} else if (parseInt(currentContentPage) == contentElCount) {
			setPrevBtn("on");
			setNextBtn("off");
		} else {
			setPrevBtn("on");
			setNextBtn("on");
		}
	}
	function setPrevBtn(condition) {
		if (condition == "on") {
			prevBtn.onclick = viewPrev;
			if (isImageBtn) prevBtn.src = prevBtn.src.replace("_off.gif", "_on.gif");
			prevBtn.className = prevBtn.className.replace(" off", "");
			prevBtn.className += " on";
		} else {
			prevBtn.onclick = "";
			if (isImageBtn) prevBtn.src = prevBtn.src.replace("_on.gif", "_off.gif");
			prevBtn.className = prevBtn.className.replace(" on", "");
			prevBtn.className += " off";
		}
	}
	function setNextBtn(condition) {
		if (condition == "on") {
			nextBtn.onclick = viewNext;
			if (isImageBtn) nextBtn.src = nextBtn.src.replace("_off.gif", "_on.gif");
			nextBtn.className = nextBtn.className.replace(" off", "");
			nextBtn.className += " on";
		} else {
			nextBtn.onclick = "";
			if (isImageBtn) nextBtn.src = nextBtn.src.replace("_on.gif", "_off.gif");
			nextBtn.className = nextBtn.className.replace(" on", "");
			nextBtn.className += " off";
		}
	}
	function viewPrev() {
		slideContentTo += contentWidth;
		currentContentPage = parseInt(currentContentPage) - 1;
		setSlideBtn();
		startScroll();
	}
	function viewNext() {
		slideContentTo -= contentWidth;
		currentContentPage = parseInt(currentContentPage) + 1;
		setSlideBtn();
		startScroll();
	}
	function startScroll() {
		setTimeout(
			function slideContent() {
				if (Math.abs(content_x - slideContentTo) > 1) {
					content_x += (slideContentTo - content_x) * .45;
					container.style.left = content_x + "px";
					startScroll();
				} else {
					content_x = slideContentTo;
					container.style.left = content_x + "px";
				}
			}

		, 101);
	}
}

/* Window open */
var aWindow = null;
function openWind(a,w,h,s) {
   if(aWindow != null){
     aWindow.close();
   }
   
   aWindow = window.open(a,"", "width="+w+",scrollbars="+s+",height="+h);
   return;
}


/* flash view */
function viewFlash(flag) {
  document.write(flag);
}

function cnt_msg(txt){ // ½Å±ÔÄÁÅÙÃ÷
	document.write("<div class='pos_abs'>");
	document.write("<div class='cnt_msg'>");
	document.write("	<table cellspacing='0' cellpadding='0' border='0'>");
	document.write("		<tr>");
	document.write("			<td><img src='/csu/img/cnt/cnt_msg1.gif' alt='' title='' /></td>");
	document.write("			<td class='cnt_msg_txt'>" + txt + "</td>");
	document.write("			<td><img src='/csu/img/cnt/cnt_msg3.gif' alt='' title='' /></td>");
	document.write("		</tr>");
	document.write("	</table>");
	document.write("</div>");
	document.write("</div>");
}

function cnt_after(txt){ // Çà»ç¾È³»
	document.write("<div class='cnt_after'>");
	document.write("	<table cellspacing='0' cellpadding='0' border='0'>");
	document.write("		<tr>");
	document.write("			<td><img src='/csu/img/cnt/cnt_after1.gif' alt='' title='' /></td>");
	document.write("			<td class='cnt_after_txt'>" + txt + "</td>");
	document.write("			<td><img src='/csu/img/cnt/cnt_after3.gif' alt='' title='' /></td>");
	document.write("		</tr>");
	document.write("	</table>");
	document.write("</div>");
}

function showHidediv(vid,flag) {
	var sid = document.getElementById(vid);
	if(flag == "0") {
		sid.style.display = "block";
	} else {
		sid.style.display = "none";
	}
}

/* db - medium */
	var clickStatus = 0;
	function overFun(param) {
		if(param == 1){
			//document.getElementById("menu" + param).className = "data1";
			document.getElementById("menu" + param).className = "data2";
		} else {
			document.getElementById("menu" + param).className = "data2";
		}
	}
	function outFun(param) {
		if ( clickStatus != param ) {
			if(param == 1){
				//document.getElementById("menu" + param).className = "data01";
				document.getElementById("menu" + param).className = "data0";
			} else {
				document.getElementById("menu" + param).className = "data0";
			}
		}
	}
	function clickFun(param) {
	//alert(param);
		clickStatus = param;
		var sub = document.getElementsByName("subdiv");
		//var arrow = document.getElementsByName("arrow");
		//alert(sub.length);
		for ( var i = 0; i < sub.length; i++ ) {
			sub[i].style.display = "none";
		
		//for ( var i = 0; i < arrow.length; i++ ) {
		//	arrow[i].style.display = "none";
		//}
		//arrow[param-1].style.display = "block";
		sub[param-1].style.display = "block";
		}
		setFun(sub.length);
	}
	function setFun(num) {
		for(var i=0; i<num; i++){
			outFun(i+1);
		}
	}
	
	
/* ÇÃ·¡½¬°ü·Ã */
function Main_Flash(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="900" height="387">');
	document.writeln('<param name="movie" value="/csu/img/swf/main_flash.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/main_flash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="387" wmode="transparent"></embed>');
	document.writeln('</object>');
}
function Main_TopFlash(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="743" height="101">');
	document.writeln('<param name="movie" value="/csu/img/swf/main_topmenu.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/main_topmenu.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="743" height="101" wmode="transparent"></embed>');
	document.writeln('</object>');
}
function Main_Rollingbanner(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="243" height="127">');
	document.writeln('<param name="movie" value="/csu/img/swf/main_rollingbanner.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/main_rollingbanner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="243" height="127" wmode="transparent"></embed>');
	document.writeln('</object>');
}

function Kid_MainFlash(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="950" height="628">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_mainflash.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_mainflash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="950" height="628" wmode="transparent"></embed>');
	document.writeln('</object>');
}
function Kid_TopFlash(PageNum,subNum){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="743" height="101">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_topmenu.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_topmenu.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"width="743" height="101" wmode="transparent"></embed>');
	document.writeln('</object>');
}
/* ¼­ºêÆäÀÌÁö Å¾¸Þ´º ÇÃ·¡½Ã 
--------------------------------------------------------------*/
function Sub_TopFlash(PageNum,subNum){
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="705" height="161">');
	document.writeln('<param name="movie" value="/csu/img/swf/sub_topmenu.swf?PageNum='+PageNum+'&subNum='+subNum+'">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<!--[if !IE]> <-->');
	document.writeln('<object type="application/x-shockwave-flash" data="/csu/img/swf/sub_topmenu.swf?PageNum='+PageNum+'&subNum='+subNum+'" width="705" height="161">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<ul id="alternative">');
	document.writeln('<li><a href="/csu/kid/gate.jsp"><img src="/csu/img/cm/alternative_navi01.jpg" alt="¾î¸°ÀÌ¹æ" /></a></li>');
	document.writeln('<li><a href="/csu/teach/gate.jsp"><img src="/csu/img/cm/alternative_navi02.jpg" alt="±³À°¹æ" /></a></li>');
	document.writeln('<li><a href="/csu/pro/1/list.do"><img src="/csu/img/cm/alternative_navi03.jpg" alt="Àü¹®°¡¹æ" /></a></li>');
	document.writeln('<li><a href="/csu/share/gate.jsp"><img src="/csu/img/cm/alternative_navi04.jpg" alt="³ª´®¹æ" /></a></li>');
	document.writeln('<li><a href="/csu/db/gate.jsp"><img src="/csu/img/cm/alternative_navi05.jpg" alt="Á¤º¸¹æ" /></a></li>');
	document.writeln('<li><a href="/csu/board/gate.jsp"><img src="/csu/img/cm/alternative_navi06.jpg" alt="¾Ë¸²¹æ" /></a></li>');
	document.writeln('</ul>');
	document.writeln('</object>');
	document.writeln('<!--> <![endif]-->');
	document.writeln('</object>');
}
function Sub_gate02(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="650" height="772">');
	document.writeln('<param name="movie" value="/csu/img/swf/gate_02.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/gate_02.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="650" height="772" wmode="transparent"></embed>');
	document.writeln('</object>');
}
function Sub_gate03(){
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="650" height="772">');
	document.writeln('<param name="movie" value="/csu/img/swf/gate_03.swf" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<!--[if !IE]> <-->');
	document.writeln('<object type="application/x-shockwave-flash" data="/csu/img/swf/gate_03.swf" width="650" height="772">');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<p>´ëÃ¼ÅØ½ºÆ®</p>');
	document.writeln('</object>');
	document.writeln('<!--> <![endif]-->');
	document.writeln('</object>');
}
function Sub_gate04(){
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="650" height="772">');
	document.writeln('<param name="movie" value="/csu/img/swf/gate_04.swf" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<!--[if !IE]> <-->');
	document.writeln('<object type="application/x-shockwave-flash" data="/csu/img/swf/gate_04.swf" width="650" height="772">');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<p>');
	document.writeln('ÄÉ¹Ì´Â ÀÌ¼¼»ó¿¡¼­ µ¿»ýÀÌ Á¦ÀÏ ¿¹»Þ´Ï´Ù.>');
	document.writeln('°¡²û ÄÉ¹ÌÀÇ Àå³­°¨À» ÀÔÀ¸·Î »¡¾Æ ¸Á°¡¶ß·Á¼­ È­°¡ ³¯¶§µµ ÀÖÁö¸¸ ±×·¡µµ µ¿»ýÀ» ÁÁ¾ÆÇÕ´Ï´Ù.>');
	document.writeln('°ÆÁ¤½º·± Ç¥Á¤À¸·Î ½Å¹®À» ÀÐ°í °è½Ã´ø ¾ö¸¶°¡ µ¿»ýÀÌ »¡°í ÀÖ´ø Àå³­°¨À» Ä¡¿ì¼Ì½À´Ï´Ù.>');
	document.writeln('¾ö¸¶´Â Àå³­°¨À» ÀÔ¿¡ ³ÖÀ¸¸é ¾ÈµÈ´Ù°í µ¿»ýÀ» ³ª¹«¶ú½À´Ï´Ù.>');
	document.writeln('ÄÉ¹Ì´Â ½Å¹®À» ÀÐ¾îÁÖ½Ã¸é¼­ ¾ÕÀ¸·Î µ¿»ýÀÌ Àå³­°¨À» ÀÔ¿¡ ³ÖÁö ¾Êµµ·Ï µ¹ºÁÁÖ¶ó°í ÇÏ¼Ì½À´Ï´Ù.>');
	document.writeln('</p>>');
	document.writeln('</object>');
	document.writeln('<!--> <![endif]-->');
	document.writeln('</object>');
}

function Sub_gate05(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="650" height="772">');
	document.writeln('<param name="movie" value="/csu/img/swf/gate_05.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/gate_05.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="650" height="772" wmode="transparent"></embed>');
	document.writeln('</object>');
}


function Kid_LeftFlash(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="204" height="369">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_leftflash.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_leftflash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="204" height="369" wmode="transparent"></embed>');
	document.writeln('</object>');
}

function Kid_Flash01(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="628" height="466">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash01.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash01.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="628" height="466" wmode="transparent"></embed>');
	document.writeln('</object>');
}

function Kid_Flash02(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash02.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash02.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}

function Kid_Flash03(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash03.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash03.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}

function Kid_Flash04(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash04.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash04.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}

function Kid_Flash05(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash05.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash05.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}

	
function Kid_Flash0101(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash0101.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash0101.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}
function Kid_Flash0102(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash0102.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash0102.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}	
function Kid_Flash0103(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash0103.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash0103.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}	
function Kid_Flash0104(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash0104.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash0104.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}	
function Kid_Flash0105(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash0105.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash0105.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}	
function Kid_Flash0106(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash0106.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash0106.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}	
function Kid_Flash0107(){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="420" height="318">');
	document.writeln('<param name="movie" value="/csu/img/swf/kid_chemi_flash0107.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="/csu/img/swf/kid_chemi_flash0107.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="420" height="318" wmode="transparent"></embed>');
	document.writeln('</object>');
}	

/*2008-10-22 
  ¼öÁ¤ÀÚ : È²¼¼ÁØ
  »ç  À¯ : ¼öÁ¤»çÇ×¿¡ µû¸¥ Ãß°¡ (ÄÉ¹Ì¾î¸°ÀÌ/±³À°¹æ ¹°ÁúÁ¤º¸µé ¿·¿¡ ¾ÆÀÌÄÜ Ãß°¡-µ¿¿µ»ó,½ºÅä¸®ºÏ + °ü·Ã ¸µÅ©)
           ÆË¾÷ µÇ´Â ÇÃ·¹½Ã ÆÄÀÏµé  WEF-INF/env/popenv.properties  ÆÄÀÏ°ú ¿¬°á µÇ¾î¾ß ÇÔ.
*/
    
function Kid_Flash0108(){
	//popenv.properties - >  KID ·Î ½ÃÀÛ   (¼öÀº)
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/house/swf/house_flash_01.swf'>");
	document.write("<param name='allowScriptAccess' value='sameDomain' />");
	document.write("<param name='movie' value='/csu/edu/kid/house/swf/house_flash_01.swf' /><param name='menu' value='false' /><param name='quality' value='high' /><param name='bgcolor' value='#ffffff' /><embed src='./swf/house_flash_01.swf' menu='false' quality='high' bgcolor='#ffffff' width='634' height='480' name='03_flash' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
	document.write("<param name='quality' value='high'>");
	document.write("</object>	");
}	


function Kid_Flash0109(){
	//popenv.properties - >  »ç¿ëÇÏ°í ÀÖÁö ¾ÊÀ½.
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/house/swf/house_flash_02_01.swf'>");
	document.write("<param name='allowScriptAccess' value='sameDomain' />");
	document.write("<param name='movie' value='/csu/edu/kid/house/swf/house_flash_02_01.swf' /><param name='menu' value='false' /><param name='quality' value='high' /><param name='bgcolor' value='#ffffff' /><embed src='./swf/house_flash_02_01.swf' menu='false' quality='high' bgcolor='#ffffff' width='634' height='480' name='03_flash' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
	document.write("<param name='quality' value='high'>");
	document.write("</object>	");
}	


function Kid_Flash0110(){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/house/swf/house_flash_03.swf'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<!--[if !IE]> <-->");
	document.write("<object type='application/x-shockwave-flash' data='/csu/edu/kid/house/swf/house_flash_03.swf' width='634' height='480'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<p>Æû¾Ëµ¥ÇÏÀÌµå</p>");
	document.write("</object>");
	document.write("<!--> <![endif]-->");
	document.write("</object>");
}	
function Kid_Flash0111(){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/house/swf/house_flash_02.swf'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<!--[if !IE]> <-->");
	document.write("<object type='application/x-shockwave-flash' data='/csu/edu/kid/house/swf/house_flash_02.swf' width='634' height='480'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<p>³³</p>");
	document.write("</object>");
	document.write("<!--> <![endif]-->");
	document.write("</object>");
}	
function Kid_Flash0112(){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/outdoor/swf/outdoor_flash_06.swf'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<!--[if !IE]> <-->");
	document.write("<object type='application/x-shockwave-flash' data='/csu/edu/kid/outdoor/swf/outdoor_flash_06.swf' width='634' height='480'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<p>ÇÁÅ»·¹ÀÌÆ®</p>");
	document.write("</object>");
	document.write("<!--> <![endif]-->");
	document.write("</object>");
}	
function Kid_Flash0113(){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/outdoor/swf/outdoor_flash_04.swf'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<!--[if !IE]> <-->");
	document.write("<object type='application/x-shockwave-flash' data='/csu/edu/kid/outdoor/swf/outdoor_flash_04.swf' width='634' height='480'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<p>ÇÇºñµðÀÌ</p>");
	document.write("</object>");
	document.write("<!--> <![endif]-->");
	document.write("</object>");
}
function Kid_Flash0114(){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/outdoor/swf/outdoor_flash_05.swf'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<!--[if !IE]> <-->");
	document.write("<object type='application/x-shockwave-flash' data='/csu/edu/kid/outdoor/swf/outdoor_flash_05.swf' width='634' height='480'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<p>Åç·ç¿£</p>");
	document.write("</object>");
	document.write("<!--> <![endif]-->");
	document.write("</object>");
}
function Kid_Flash0115(){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/outdoor/swf/outdoor_flash_03.swf'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<!--[if !IE]> <-->");
	document.write("<object type='application/x-shockwave-flash' data='/csu/edu/kid/outdoor/swf/outdoor_flash_03.swf' width='634' height='480'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<p>ÇÇ·¹½º·ÎÀÌµå-·¹½º¸Þ½º¸°</p>");
	document.write("</object>");
	document.write("<!--> <![endif]-->");
	document.write("</object>");
}
function Kid_Flash0116(){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='634' height='480'>");
	document.write("<param name='movie' value='/csu/edu/kid/outdoor/swf/outdoor_flash_07.swf'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<!--[if !IE]> <-->");
	document.write("<object type='application/x-shockwave-flash' data='/csu/edu/kid/outdoor/swf/outdoor_flash_07.swf' width='634' height='480'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<p>Å»Å©</p>");
	document.write("</object>");
	document.write("<!--> <![endif]-->");
	document.write("</object>");
}
