
	var notice_width='470';
	var notice_height='18';
	var notice_bgcolor='';
	var notice_background='';
	var notice_flag='';
	var dotdiv ='';
	var dotdiv2='';

// ¶óÀÎ °¹¼ö
	var dotnum = 1;
// ¸ØÃß´Â ½Ã°£
	var notice_speed='3000';
// Scrolling ¼Óµµ
	var notice_waitingtime='5';

	if (noticemsg.length>2)
		t=2;
	else
		t=0;

	function notice_move1(sbswhichdiv){
		dotdiv=eval(sbswhichdiv);
		notice_flag='mo_1';

		if (dotdiv.style.pixelTop>0&&dotdiv.style.pixelTop<=dotnum){
			dotdiv.style.pixelTop=0;
			setTimeout("notice_move1(dotdiv)",notice_speed);
			setTimeout("notice_move2(notice_2)",notice_speed);
			return;
		}

		if (dotdiv.style.pixelTop>=dotdiv.offsetHeight*-1){
			dotdiv.style.pixelTop-=dotnum;
			setTimeout("notice_move1(dotdiv)",notice_waitingtime);
		}
		else{
			dotdiv.style.pixelTop=notice_height;
			dotdiv.innerHTML=noticemsg[t];
			if (t==noticemsg.length-1)
				t=0;
			else
				t++;
		}
	}

	function notice_move2(sbswhichdiv){
		dotdiv2=eval(sbswhichdiv);
//			alert('b'+t);
			notice_flag='mo_2';

		if (dotdiv2.style.pixelTop>0&&dotdiv2.style.pixelTop<=dotnum){
			dotdiv2.style.pixelTop=0;
			setTimeout("notice_move2(dotdiv2)",notice_speed);
			setTimeout("notice_move1(notice_1)",notice_speed);
			return;
		}

		if (dotdiv2.style.pixelTop>=dotdiv2.offsetHeight*-1){
			dotdiv2.style.pixelTop-=dotnum;
			setTimeout("notice_move2(notice_2)",notice_waitingtime);
		}
		else{
			dotdiv2.style.pixelTop=notice_height;
			dotdiv2.innerHTML=noticemsg[t];
			if (t==noticemsg.length-1)
				t=0;
			else
				t++;
		}
	}

	function notice_scroll(){
		if (noticemsg.length>1)
		{		
			notice_move1(notice_1);

			notice_2.style.top=notice_height;
			notice_2.style.visibility='visible';
		} else {
			if (noticemsg.length==0)
			{
				notice_1.style.visibility='hidden';
			}
			notice_2.style.visibility='hidden';

		}

//		program_scroll();
    }

	function dot_stop(){
				dotnum=0;
	}

	function dot_start(){
		dotnum=1;
	}
if (document.all){
		document.writeln('<span id="noticemain2" style="vertical-align : middle;position:relative;width:'+notice_width+';height:'+notice_height+';overflow:hiden;background-color:'+notice_bgcolor+'" onmouseover="dot_stop()" onmouseout="dot_start()">');
		document.writeln('<div style="position:absolute;width:'+notice_width+';height:'+notice_height+';clip:rect(0 '+notice_width+' '+notice_height+' 0);left:0;top:0" onmouseover="dot_stop()" onmouseout="dot_start()">');
		document.writeln('<div id="notice_1" style="position:absolute;width:'+notice_width+';left:0;top:3;text-align=left">');
		document.write(noticemsg['0']);
		document.writeln('</div>');
		document.writeln('<div id="notice_2" style="position:absolute;width:'+notice_width+';left:0;top:3;visibility:hidden;text-align=left"  onmouseover="dot_stop()" onmouseout="dot_start()">');
		document.write(noticemsg['1']);
		document.writeln('</div>');
		document.writeln('</div>');
		document.writeln('</span>');
	}
//-->