// <body onblur="window.clipboardData.setData('Text', '');"> //Å¬¸³º¸µåÀÇ ³»¿ëÀ» ºó°ªÀ¸·Î ´Ù½Ã ¼ÂÆÃ
// <body onblur="window.clipboardData.clearData('Text');"> //Å¬¸³º¸µåÀÇ ³»¿ëÀ» Áö¿ò
/***** ¼¿·ºÆ®¹Ú½º DIVÈ­ ½ÃÀÛ *****/
function SelectInDiv(width){
	var tag = "";
	if (width == -1){
		tag += "</div></div>";
	}else{
		tag += "<div style='width:" + width + "px;height:19px;position:relative;left:0px;top:0px;border:1px solid;border-color: #bebebe #eeeeee #eeeeee #bebebe;background-color:#efefef;'>"
		tag += "<div style='width:" + width + "px;clip:rect(2," + (width - 2) + ",18,2);height:21px;position:absolute;left:-1px;top:-1px;'>"
	}
	document.write(tag);
}
/***** ¼¿·ºÆ®¹Ú½º DIVÈ­ ³¡ *****/
/***** ¼¿·ºÆ®¹Ú½º DIVÈ­ ½ÃÀÛ(ÁÖ¼Ò°Ë»ö¿ë) *****/
function SelectInDiv2(width, row){
	var tag = "";
	if (width == -1){
		tag += "</div></div>";
	}else{
		height = 18 * row;
		tag += "<div style='width:" + width + "px;height:" + height + "px;position:relative;left:0px;top:0px;border:1px solid;border-color: #bebebe #eeeeee #eeeeee #bebebe;;background-color:#efefef;'>"
		tag += "<div style='width:" + width + "px;clip:rect(2," + (width - 2) + "," + height + ",2);height:" + height + "px;position:absolute;left:-1px;top:-1px;'>"
	}
	document.write(tag);
}
/***** ¼¿·ºÆ®¹Ú½º DIVÈ­ ³¡(ÁÖ¼Ò°Ë»ö¿ë) *****/
/***** ¹ÙÀÌÆ®¼ö Ã¼Å©(onkeyup) ½ÃÀÛ *****/
function ByteCheck(str, bytes, bytebox, inputbox){
	var cnt = 0;
	var sum = 0;
	var eng = 0;
	var kor = 0;
	var sub = 0;
	for(i = 0;i < str.length;i++){
		if(str.charCodeAt(i) < 1000){
			cnt = 1;
			eng++;
			if(eng + kor > bytes) eng--;
		}else{
			cnt = 2;
			kor += 2;
			if(eng + kor > bytes) kor -= 2;
		}
		sum += cnt;
		bytebox.value = sum;
		sub = eng + Math.floor(kor/2)
	}
	if(sum > bytes){
		alert("³»¿ëÀº " + bytes + " Byte¸¦ ³ÑÀ» ¼ö ¾ø½À´Ï´Ù.");
		inputbox.value = str.substring(0, sub);
		bytebox.value = bytes;
		return;
	}
}
/***** ¹ÙÀÌÆ®¼ö Ã¼Å©(onkeyup) ³¡ *****/
/***** ¼ýÀÚ¸¸ ¾²±â(onkeypress) ½ÃÀÛ *****/
function OnlyNumber(){
	if((event.keyCode<48) || (event.keyCode>57)){
		event.returnValue=false;
	}
}
/***** ¼ýÀÚ¸¸ ¾²±â(onkeypress) ³¡ *****/
/***** ¹®ÀÚ¸¸ ¾²±â(onkeypress) ½ÃÀÛ *****/
function OnlyString(){
	if(event.keyCode<65 || event.keyCode>122){
		if(event.keyCode>90 || event.keyCode<97){
			event.returnValue=false;
		}
	}
}
/***** ¹®ÀÚ¸¸ ¾²±â(onkeypress) ³¡ *****/
/***** ÇÑ±Û¸¸ ¾²±â(onkeypress) ½ÃÀÛ *****/
function OnlyKorean(){
	if((event.keyCode<65) || (event.keyCode>90 || event.keyCode<97) || event.keyCode>122){
		event.returnValue=false;
	}
}
/***** ÇÑ±Û¸¸ ¾²±â(onkeypress) ³¡ *****/
/***** ÀÌ¸ÞÀÏ Çü½Ä Ã¼Å© ½ÃÀÛ *****/
function email_check(str){
	var RegExp = /^[0-9a-zA-Z]([-_\.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_\.]?[0-9a-zA-Z])*\.[a-zA-Z]{2,3}$/i;
//						 ---------------	   -------- --------------		  -------------	------- -----------------	 ----------------
//								¨ç				  ¨è		    ¨é						¨ê			   ¨ë			 ¨ì					¨í				
/*
¨ç Ã¹±ÛÀÚ´Â ¼ýÀÚ¶Ç´Â ¿µ¹®ÀÚ
¨è	 "-" ¶Ç´Â "_" ¶Ç´Â "." ÀÌ 0¹ø ¶Ç´Â 1¹ø
¨é	 ¼ýÀÚ¶Ç´Â ¿µ¹®ÀÚ
¨ê	 "@" µÚ¿¡´Â ¼ýÀÚ ¶Ç´Â ¿µ¹®ÀÚ
¨ë "-" ¶Ç´Â "_" ¶Ç´Â "." ÀÌ 0¹ø ¶Ç´Â 1¹ø
¨ì	 ¼ýÀÚ¶Ç´Â ¿µ¹®ÀÚ
¨í	 "." µÚ ¸¶Áö¸· ¹®ÀÚ¿­Àº ¿µ¹®ÀÚ°¡ 2~3°³
*/
	if(!RegExp.test(str)){
		alert("¿Ã¹Ù¸¥ ÀÌ¸ÞÀÏ Çü½ÄÀÌ ¾Æ´Õ´Ï´Ù.\nÈ®ÀÎÇØÁÖ¼¼¿ä.");
		return;
	}
}
/***** ÀÌ¸ÞÀÏ Çü½Ä Ã¼Å© ³¡ *****/
/***** ¾ÆÀÌµð Çü½Ä Ã¼Å© ½ÃÀÛ *****/
function IDCheck(str, start, end){
	var RegExp = /^[a-zA-Z0-9_]{start, end}$/;
	if(!RegExp.test(str)){
		alert("¾ÆÀÌµð´Â " + start + "~" + end + "ÀÚ·Î ¿µ¹®ÀÚ¿Í ¼ýÀÚ, Æ¯¼ö¹®ÀÚ _¸¸ »ç¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.");;
	}
}
/***** ¾ÆÀÌµð Çü½Ä Ã¼Å© ³¡ *****/
/***** ºñ¹Ð¹øÈ£ Çü½Ä Ã¼Å© ½ÃÀÛ *****/
function PassCheck(str, start, end){
	var RegExp1 = /^[a-zA-Z0-9]{start, end}$/;
	var RegExp2 = /[a-zA-Z]/;
	var RegExp3 = /[0-9]/;
	if(!RegExp1.test(str) || !RegExp2.test(str) || !RegExp3.test(str)){
		alert("ºñ¹Ð¹øÈ£´Â " + start + "~" + end + "ÀÚ·Î ¿µ¹®ÀÚ¿Í ¼ýÀÚÀÇ È¥ÇÕÀ¸·Î »ç¿ëÇÏ¼Å¾ßÇÏ¸ç Æ¯¼ö¹®ÀÚ´Â »ç¿ëÇÏ½Ç ¼ö ¾ø½À´Ï´Ù.");
	}
}
/***** ºñ¹Ð¹øÈ£ Çü½Ä Ã¼Å© ³¡ *****/
/***** ½ÇÁ¦ ÀÌ¹ÌÁö º¸±â½ÃÀÛ *****/
function HowSize(path, width, height){
	window.open(path, "image", "width=" + width + ", height=" + height + ", resizeable=no, scrollbars=no");
}
/***** ½ÇÁ¦ ÀÌ¹ÌÁö º¸±â³¡ *****/
/***** ¾ÆÀÌÇÁ·¹ÀÓ »çÀÌÁî Á¶Àý ½ÃÀÛ(onload="IframeResize(this)") *****/
function IframeResize(ifrm){
	ifrm.height = eval(ifrm.name + ".document.body.scrollHeight");	//´Þ·Â ¾ÆÀÌÇÁ·¹ÀÓ»çÀÌÁî ÀçÁ¶Á¤
}
/***** ¾ÆÀÌÇÁ·¹ÀÓ »çÀÌÁî Á¶Àý ³¡(onload="IframeResize(this)") *****/
/***** ´Þ·Â·¹ÀÌ¾î º¸¿©ÁÖ±â ½ÃÀÛ *****/
function LayerView(x, y, InputBox, FrmName){
	plus_left = x;
	plus_top = y + 18;
	if(document.all){
		eval(FrmName).style.left = plus_left;
		eval(FrmName).style.top = plus_top;
		if(eval(FrmName).style.visibility == "visible") eval(FrmName).style.visibility = "hidden";
		else eval(FrmName).style.visibility = "visible";
	}
	eval(FrmName).src = "/include/calendar.asp?Box=" + InputBox + "&Frm=" + FrmName;
}
/***** ´Þ·Â·¹ÀÌ¾î º¸¿©ÁÖ±â ³¡ *****/
/***** ´Þ·Â·¹ÀÌ¾î À§Ä¡Àâ±â ½ÃÀÛ *****/
function GetXY(PosObj, InputBox, FrmName){
	x = 0; y = 0;
	while(PosObj.offsetParent){
		x += PosObj.offsetLeft;
		x += PosObj.offsetParent.clientLeft;
		y += PosObj.offsetTop;
		y += PosObj.offsetParent.clientTop;
		PosObj = PosObj.offsetParent;
	}
	LayerView(x, y, InputBox, FrmName);
}
/***** ´Þ·Â·¹ÀÌ¾î À§Ä¡Àâ±â ³¡ *****/
/***** ÆË¾÷Ã¢ ´Þ·Â·¹ÀÌ¾î À§Ä¡Àâ±â ½ÃÀÛ *****/
function PopGetXY(PosObj, InputBox, FrmName){
	x = 0; y = 0;
	while(PosObj.offsetParent){
		x += PosObj.offsetLeft;
		x += PosObj.offsetParent.clientLeft;
		y += PosObj.offsetTop;
		y += PosObj.offsetParent.clientTop;
		PosObj = PosObj.offsetParent;
	}
	LayerView(0, -18, InputBox, FrmName);
}
/***** ÆË¾÷Ã¢ ´Þ·Â·¹ÀÌ¾î À§Ä¡Àâ±â ³¡ *****/
/***** ÀÌ¹ÌÁö ÇÊÅÍÀû¿ëÇÏ±â ½ÃÀÛ *****/
function BlendImage(path, MainObj){
	if(path != ""){
		MainObj.filters.blendTrans.stop();
		MainObj.filters.blendTrans.Apply();
		MainObj.src = path;
		MainObj.filters.blendTrans.Play();
	}  
}
/***** ÀÌ¹ÌÁö ÇÊÅÍÀû¿ëÇÏ±â ³¡ *****/
/***** ÀÌ¹ÌÁö ¹Ì¸®º¸±â ½ÃÀÛ *****/
function Preview(Src, Obj){
	if(event.srcElement.value != ""){
		if(!event.srcElement.value.match(/(.jpg|.jpeg|.gif|.png)/)){ 
			alert("ÀÌ¹ÌÁö ÆÄÀÏ¸¸ ¾÷·Îµå °¡´ÉÇÕ´Ï´Ù.");
			return;
		}else{
			document.getElementById(Obj).src = Src;
		}
	}
}
/***** ÀÌ¹ÌÁö ¹Ì¸®º¸±â ³¡ *****/
/***** SWF ½ÃÀÛ *****/
//swf(ÆÄÀÏ°æ·Î, °¡·Î, ¼¼·Î)
function SWF(src, width, height) {
    object = '';
    object += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="param" width="'+width+'" height="'+height+'">';
    object += '<param name="movie" value="'+src+'">';
	object += '<PARAM NAME=wmode VALUE=transparent>';
    object += '<embed src="'+src+'" quality="high" wmode="transparent" bgcolor="#ffffff" menu="false" width="'+width+'" height="'+height+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/embed>';
    object += '<\/object>';
    document.write(object);
}
//<script>swf('',950,300);</script>
/***** SWF ³¡ *****/
/***** ÁÖ¹Îµî·Ï¹øÈ£ Ã¼Å© ½ÃÀÛ *****/
function RegnoCheck(regno){
	var StrNo = "234567892345";
	var sum = 0;
	for(i=0;i<StrNo.length;i++)	 sum += StrNo.charAt(i) * regno.charAt(i);
	if(regno.charAt(12) != (11 - (sum % 11)) % 10){
		alert("Àß¸øµÈ ÁÖ¹Îµî·Ï¹øÈ£ÀÔ´Ï´Ù.");
		return false;
	}
}
/***** ÁÖ¹Îµî·Ï¹øÈ£ Ã¼Å© ³¡ *****/
/***** »ç¾÷ÀÚ¹øÈ£ Ã¼Å© ³¡ *****/
function BiznoCheck(BizNo){
	var Biz = "137137135";
	var sum = 0;
	if(BizNo.length != 10){
		alert("±ÍÇÏ²²¼­ ÀÔ·ÂÇÏ½Å »ç¾÷ÀÚµî·Ï¹øÈ£´Â Á¤»óÀûÀÎ Ã¼°è°¡ ¾Æ´Õ´Ï´Ù.");
		return false;
	}else{
		for(i=0;i<Biz.length;i++) sum += Biz.charAt(i) * BizNo.charAt(i);
		sum = (sum + (BizNo.charAt(8) * 5) / 10) % 10;
		if(sum != 0) sum = 10 - sum;
		else sum = 0;
		if(sum != BizNo.charAt(9)){
			alert("±ÍÇÏ²²¼­ ÀÔ·ÂÇÏ½Å »ç¾÷ÀÚµî·Ï¹øÈ£´Â Á¤»óÀûÀÎ Ã¼°è°¡ ¾Æ´Õ´Ï´Ù.");
			return false;
		}
	}
}
/***** »ç¾÷ÀÚ¹øÈ£ Ã¼Å© ³¡ *****/
/***** ÀÚµ¿Æ÷Ä¿½º ½ÃÀÛ *****/
function AutoFocus(str, no, nextbox){
	if(str.length == no) nextbox.focus();
}
/***** ÀÚµ¿Æ÷Ä¿½º ³¡ *****/
/***** ¸ÞÀÏ µµ¸ÞÀÎ Á÷Á¢ÀÔ·Â°ú ¼±ÅÃ ½ÃÀÛ *****/
function InputDomain(domain, obj){
	if(domain != ""){
		obj.value = domain;
		obj.readOnly = true;
	}else{
		obj.value = "";
		obj.readOnly = false;
		obj.focus();
	}
}
/***** ¸ÞÀÏ µµ¸ÞÀÎ Á÷Á¢ÀÔ·Â°ú ¼±ÅÃ ³¡ *****/
/***** »õÃ¢¿­±â ½ÃÀÛ *****/
function WindowOpen(path, name, width, height, scroll, resize){
	window.open(path, name, "width=" + width + ", height=" + height + ", scrollbars=" + scroll + ", resizeable=" + resize)
}
/***** »õÃ¢¿­±â ³¡ *****/
/***** Å¬¸³º¸µå¿¡ º¹»çÇÏ±â ½ÃÀÛ *****/
function CopyClip(source){
	if(window.document.all){
		window.clipboardData.setData("Text", source);
		alert("Å¬¸³º¸µå¿¡ º¹»çµÇ¾ú½À´Ï´Ù.\nÇØ´çÆäÀÌÁö¿¡ ºÙ¿©³Ö±â(Ctrl + V)¸¦ ÇÏ½Ã¸é µË´Ï´Ù.");
		return;
	}
}
//onclick="CopyCilp(document.body.innerHTML);"
/***** Å¬¸³º¸µå¿¡ º¹»çÇÏ±â ³¡ *****/
/***** ÄÚ¸àÆ® ·¹ÀÌ¾î º¸¿©ÁÖ±â ½ÃÀÛ *****/
function CommentView(PosObj, idx, Box, Oper, Width, Height){
	x = 0; y = 0;
	while(PosObj.offsetParent){
		x += PosObj.offsetLeft;
		x += PosObj.offsetParent.clientLeft;
		y += PosObj.offsetTop;
		y += PosObj.offsetParent.clientTop;
		PosObj = PosObj.offsetParent; 
	}
	if(idx){
		Box[idx].style.left = x + Width;
		Box[idx].style.top = y + Height;

		if(Oper) Box[idx].style.display = "";
		else Box[idx].style.display = "none";
	}else{
		Box.style.left = x + Width;
		Box.style.top = y + Height;

		if(Oper) Box.style.display = "";
		else Box.style.display = "none";
	}
}
/***** ÄÚ¸àÆ® ·¹ÀÌ¾î º¸¿©ÁÖ±â ³¡ *****/
/***** Å×ÀÌºí ¼¼·Î °£°Ý¶ç¿ì±â ½ÃÀÛ *****/
function SpaceHeight(PX){
	document.write("<table cellpadding='0' cellspacing='0'><tr height='" + PX + "'><td></td></tr></table>")
}
/***** Å×ÀÌºí ¼¼·Î °£°Ý¶ç¿ì±â ³¡ *****/
/***** Å×ÀÌºí °¡·Î °£°Ý¶ç¿ì±â ½ÃÀÛ *****/
function SpaceWidth(PX){
	document.write("<table cellpadding='0' cellspacing='0'><tr><td width='" + PX + "'></td></tr></table>")
}
/***** Å×ÀÌºí °¡·Î °£°Ý¶ç¿ì±â ³¡ *****/
/***** °¡·Î ±×·¡ÇÁ ±×¸®±â ½ÃÀÛ *****/
function GraphWidth(Count, Total, Width, Index){
	document.write("<table cellpadding='0' cellspacing='0'>")
	document.write("<tr>")
	document.write("<td width='" + Width + "' style='background:url(/images/graph/width/bar_bg" + Width + ".gif) no-repeat;'>")
	document.write("<table cellpadding='0' cellspacing='0'>")
	document.write("<tr>")
	document.write("<td width='1'><img src='/images/graph/width/bar_side" + Index + ".gif' width='1' height='13' align='absmiddle'></td>")
	document.write("<td><img src='/images/graph/width/bar_mid" + Index + ".gif' width='" + (Count / Total) * Width + "' height='13' align='absmiddle'></td>")
	document.write("<td width='1'><img src='/images/graph/width/bar_side" + Index + ".gif' width='1' height='13' align='absmiddle'></td>")
	document.write("</tr>")
	document.write("</table>")
	document.write("</td>")
	document.write("<td width='50' align='right'>&nbsp;" + Math.round(((Count / Total) * 100)) + "%</td>")
	document.write("<td width='50' align='right' class='Red'>&nbsp;(" + Count + "¸í)</td>")
	document.write("</tr>")
	document.write("</table>")

}
/***** °¡·Î ±×·¡ÇÁ ±×¸®±â ³¡ *****/
/***** ¼¼·Î ±×·¡ÇÁ ±×¸®±â ½ÃÀÛ *****/
function GraphHeight(Count, Total, Height, Index){
	document.write("<table cellpadding='0' cellspacing='0'>")
	document.write("<tr><td align='center'>" + Math.round(((Count / Total) * 100)) + "%<br><span class='Red'>(" + Count + ")</span></td></tr>")
	document.write("<tr><td align='center'><table cellpadding='0' cellspacing='0'>")
	document.write("<tr><td height='" + Height + "' valign='bottom' style='background:url(/images/graph/height/bar_bg.gif) no-repeat;'>")
	document.write("<table width='13' cellpadding='0' cellspacing='0'>")
	document.write("<tr><td height='1'><img src='/images/graph/height/bar_side" + Index + ".gif' height='1' width='13'></td></tr>")
	document.write("<tr><td><img src='/images/graph/height/bar_mid" + Index + ".gif' height='" + (Count / Total) * Height + "' width='13'></td></tr>")
	document.write("<tr><td height='1'><img src='/images/graph/height/bar_side" + Index + ".gif' height='1' width='13'></td></tr>")
	document.write("</table></td></tr></table></td></tr></table>")

}
/***** ¼¼·Î ±×·¡ÇÁ ±×¸®±â ³¡ *****/
/***** ÀÏ¹Ý ¹öÆ° Ãâ·Â ½ÃÀÛ *****/
function Btn(Str, Action, Len, Folder){
	document.write("<table width='" + ((20*Len)+9) + "' cellpadding='0' cellspacing='0' style='cursor:pointer;'>")
	document.write("<tr valign='middle'>")
	document.write("<td width='2'><img src='/images/other/"+Folder+"/btn_left.gif'></td>")
	document.write("<td width='" + 20*Len + "' class='Btn' background='/images/other/"+Folder+"/btn_middle.gif' onclick=" + Action + ">" + Str + "</td>")
	document.write("<td width='2'><img src='/images/other/"+Folder+"/btn_right.gif'></td>")
	document.write("<td width='5'></td>")
	document.write("</tr>")
	document.write("</table>")
}
/***** ÀÏ¹Ý ¹öÆ° Ãâ·Â ³¡ *****/
/***** Å« ¹öÆ° Ãâ·Â ½ÃÀÛ *****/
function LBtn(Str, Action, Len, Folder){
	document.write("<table width='" + ((20*Len)+9) + "' cellpadding='0' cellspacing='0' style='cursor:pointer;'>")
	document.write("<tr valign='middle'>")
	document.write("<td width='2'><img src='/images/other/"+Folder+"/lbtn_left.gif'></td>")
	document.write("<td width='" + 20*Len + "' class='LBtn' background='/images/other/"+Folder+"/lbtn_middle.gif' onclick=" + Action + "><br>" + Str + "</td>")
	document.write("<td width='2'><img src='/images/other/"+Folder+"/lbtn_right.gif'></td>")
	document.write("<td width='5'></td>")
	document.write("</tr>")
	document.write("</table>")
}
/***** Å« ¹öÆ° Ãâ·Â ³¡ *****/
/***** XMLHttp °´Ã¼ »ý¼º ½ÃÀÛ *****/
var Ajax;
function GetAjax(){
	if(window.ActiveXObject){
		Ajax = new ActiveXObject("Microsoft.XMLHTTP");
	}else if(window.XMLHttpRequest){
		Ajax = new XMLHttpRequest();
	}
}
/***** XMLHttp °´Ã¼ »ý¼º ³¡ *****/
/***** XMLHttp¿Í ÇÔ²²ÇÏ´Â ·ÎµùÀÌ¹ÌÁö ½ÃÀÛ *****/
var Loading = ""
Loading = "<div style='text-align:center;vertical-align:middle;'>";
Loading += "<img src='/images/admin/ico_loading.gif' align='absmiddle'>";
Loading += "</div>";
/***** XMLHttp¿Í ÇÔ²²ÇÏ´Â ·ÎµùÀÌ¹ÌÁö ³¡ *****/
/***** ¸Þ½ÅÀú ¾Ë¸²±â´É ½ÃÀÛ *****/
function Alerter(Msg, Width, Height, Speed){
	this.Msg = Msg;
	this.Width = Number(Width);
	this.Height = Number(Height);
	this.Speed = Number(Speed);
	this.STop = 0;
	this.ETop = 0;
	this.SpeedObj = null;
	this.MakeTable = MakeTable;
	this.StartAlert = StartAlert;
}

function MakeTable(){
	var Left = Number(document.body.clientWidth) - this.Width;
	this.STop = Number(document.body.clientHeight);
	this.ETop = Number(document.body.clientHeight) - this.Height;

	document.write("<table id='Arlam' cellpadding='0' cellspacing='0' background='/images/admin/bg_div.gif' width=" + this.Width + " height=" + this.Height);
	document.write(" style=\"position:absolute;left:" + Left + ";top:" + this.STop + ";\">");
	document.write("<tr><td width='100%' height='25' align='right' style='padding-right:5px;'><img src='/images/admin/alert_x.gif' class='ImgBtn' onclick=\"document.all.Arlam.style.display='none'\"></td></tr>");
	document.write("<tr valign='top'><td width='100%' style='padding:15px;'>" + this.Msg + "</td></tr>");
	document.write("</table>");

	this.SpeedObj = setInterval("Scroll()", this.Speed);
}

function Scroll(){
	var Percent = .05 * (Arlam.STop - Arlam.ETop);
	if(Percent > 0) Percent = Math.ceil(Percent);
	else Percent = Math.floor(Percent);
	
	document.all.Arlam.style.pixelTop -= Percent;
	Arlam.ETop += Percent;

	window.status = Arlam.ETop;

	if(Arlam.ETop == Arlam.STop - Arlam.Height) clearInterval(Arlam.SpeedObj);
}

function StartAlert(){
	this.MakeTable();
}
/***** ¸Þ½ÅÀú ¾Ë¸²±â´É ³¡ *****/