<!-- 

//	Created for Alpha Supply Co. by PWDS 

//	WebTech@prowebdesignservices.com

var pic = new Array();



	

//---------------statusbar stuff--------------





var speed = 50

var pause = 6000 

var timerID = null

var texttype = false

var ar = new Array()



ar[0] = "Welcome to TransferBusiness.com"

ar[1] = "The Home page is an introduction to the Transfer business"

//ar[2] = "The Sublimation page is the Basics of Inkjet Dye Sublimation"

//ar[3] = "The Printers page is about printers and equipment needed for Inkjet sublimation"

// ar[4] = "The Inks page explains Sublilmation Inks for Inkjet printers"

// ar[5] = "The Profiles page explains ICC Profiles and why you need them"

// ar[6] = "The Paper page explains the paper needs for inkjets"

// ar[7] = "The Bulk Ink page is for high volume sublimators"

// ar[8] = "The Check List page gives you a list of what is needed"

// ar[9] = "The Prices page can be saved to your computer"

// ar[10] = "If you need assistance, click on Contact to reach us"





var msgnow = 0

var offset = 0



function stopBanner() {

        if (texttype)

                clearTimeout(timerID)

        texttype = false

}



function startBanner() {

        stopBanner()

        showBanner()

}



function showBanner() {

        var text = ar[msgnow]



        if (offset < text.length) {

                if (text.charAt(offset) == " ")

                        offset++                        



                var partialMessage = text.substring(0, offset + 1) 

                window.status = partialMessage

                offset++ 

                timerID = setTimeout("showBanner()", speed)

                texttype = true

        } else {

                offset = 0

                msgnow++

                if (msgnow == ar.length)

                        msgnow = 0



                timerID = setTimeout("showBanner()", pause)

                texttype = true

        }

}



function launchtimes(){

var timespage="http://sublimationcartridge.com/pretimesform.htm"



dum=window.open(timespage,"","width=640,height=500,scrollbars")



}



//-->
