<!--
/*
var msg = "KTCKOREA ¹æ¹®À» È¯¿µ ÇÕ´Ï´Ù.";
var espaceur = " ";
var pos = 0;
var showmsg = true;
function ScrollMessage() {
if (!showmsg) {
window.setTimeout("ScrollMessage()",1500);
showmsg = true;
return;
}
window.status = msg.substring(pos, msg.length) + espaceur + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos = 0;
window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();
function LinkMessage(text) {
showmsg = false;
window.status = text;
}*/
//-->
