<!--

var wait = 90 		//sleep time until next letter (milliseconds)

var message = new Array()

message[0] = "Credit Card Orders are subject to a $50.00 minimum order charge and subject to a minimum shipping/handling charge of $12.95."

message[1] = "Thank You for choosing American Filing Solutions for your Office Filing & Promotional Printing needs."

message[2] = "Call 1-888-891-1970 to place an order » www.FilingToday.com"


var msgs = 2 		//Number of message (0 is first)



var temp = ""		//Do not modify these... (recommended)

var curmsg = 0

var a = 0

var counter = 0



function typew()

{

a = a + 1

check()

window.status = message[curmsg].substring(0, a)

if(a == message[curmsg].length + 10)

{

curmsg = curmsg + 1

a = 0

}

if(curmsg > msgs)

{

curmsg = 0 }

counter = setTimeout("typew()", wait)

}

function check()

{

if(a <= message[curmsg].length)

{

if(message[curmsg].substring(a, a + 1) == "")

{

a = a + 1

check()

}

}

}

typew();

//-->
