﻿
    /*Alert-It Scroller script- By JavaScript Kit*/

    //Customize your message here. Use any HTML desired:
    var themsg = '<span style="font:italic 18px red Arial;color:red;"><b><a href="http://www.basketdergisi.com" target="_new">BasketDergisi</a></b></span>'
    var speed = 3 //speed of scroller (1-10 or more)
    var loops = 20 //specify number of times message scrolls across screen (an integer or "infinite")

    function populatescroller() {
        var windowwidth = iecompattest().clientWidth
        //document.getElementById("alertit").innerHTML = themsg
        document.getElementById("alertit").style.width = windowwidth
        document.getElementById("alertit").scrollAmount = speed
        document.getElementById("alertit").scrollDelay = 20
        document.getElementById("alertit").loop = loops
        document.getElementById("alertit").onfinish = function() {
        document.getElementById("alertit").style.visibility = "hidden"
        }
    }

    function iecompattest() {
        return (document.compatMode != "BackCompat") ? document.documentElement : document.body
    }

//    if (document.all && document.getElementById) {
//        window.onload = populatescroller
//        window.onresize = populatescroller
//    }

   
    function populatescroller1() {
        var windowwidth1 = iecompattest1().clientWidth
        //document.getElementById("alertit").innerHTML = themsg
        document.getElementById("alertit1").style.width = windowwidth
        document.getElementById("alertit1").scrollAmount = speed
        document.getElementById("alertit1").scrollDelay = 20
        document.getElementById("alertit1").loop = loops
        document.getElementById("alertit1").onfinish = function() {
            document.getElementById("alertit1").style.visibility = "hidden"
        }
    }

    function iecompattest1() {
        return (document.compatMode != "BackCompat") ? document.documentElement : document.body
    }



