﻿//    jsmarquee.js
//    Copyright (c) 2007-2008 Technicanauts Inc. All Rights Reserved.
//    www.technicanauts.com
var msg="高品質LED蛍光灯の取り扱いを始めました。";
function jsmarquee(id)
{
    if(document.getElementById)
    {
        var _2=document.getElementById(id);
        if(_2.firstChild&&_2.firstChild.nodeName=="#text")
        {
            _2.firstChild.nodeValue=msg;
        }
        else
        {
            if(document.all)
            {
                _2.innerHTML=msg;
            }
        }
    }
    else
    {
        if(document.layers)
        {
            msg2=msg.substring(0,40);
            document.layers[id].visibility="hidden";
            document.layers[id].document.open();
            document.layers[id].document.write(msg2);
            document.layers[id].document.close();
            document.layers[id].visibility="show";
        }
    }
    msg=msg.substring(2,msg.length*2)+msg.substring(0,2);
    var _3="jsmarquee('"+id+"')";
    setTimeout(_3,800);
}

