var msg = "     ¢Ü¢Ý ÄíÁî³Ý¿¡ ¿À½Å°ÍÀ» È¯¿µÇÕ´Ï´Ù.~ ¢Ü¢Û       ";
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;
}
