<!--
//This credit line must stay intact
//Status Scrolling script
//For this script, visit java-scripts.net 

myMsg = "Welcome To Albarq Technical Co. - Kuwait - Hawalli - Tunis Street - Tel: 22646630, 22646631                                               "

i=0

function scrollMsg() {
    frontPart = myMsg.substring(i,myMsg.length)
    backPart = myMsg.substring(0,i)
    window.status = frontPart + backPart

    if (i < myMsg.length) {
        i++
    }
    else {
        i = 0
    }

    setTimeout("scrollMsg()",100)

}

window.onload=scrollMsg
//-->
