var Banner_Width = 670;
var Msg_Left = Banner_Width;
var Msg_Width = 800;

function scrollBanner(id) {            
    --Msg_Left;
    if (Msg_Left < -Msg_Width) {
        Msg_Left = Banner_Width; 
    }
    document.getElementById(id).style.left = Msg_Left + "px";
}

