//----------------------------------------------------------------------------------
// Title: Buckaroo Random Text Message Broadcaster
// URL: http://www.buckarootechnology.com/
// Version: 1.00
// Last Modify: 03-01-2003
// Author: Kenneth E. Daily
// Copyright (c)2003 Buckaroo Technology Group Incorporated. All Rights Reserved. 
//----------------------------------------------------------------------------------

var message=new Array()

//Change/add/delete messages as desired below

message[0]="<DIV ALIGN='Right'><A HREF='ktc_our_services_internet_websense.html' CLASS='homebodylinktext'>Websense - Can it Help You?</A></DIV>"

message[1]="<DIV ALIGN='Right'><A HREF='ktc_client_solutions_client_solution_1.html' CLASS='homebodylinktext'>Review an Actual Client Experience!</A></DIV>"

message[2]="<DIV ALIGN='Right'><A HREF='ktc_our_services_bus_manage_solutions.html' CLASS='homebodylinktext'>ACCPAC - E-Business Solutions!</A></DIV>"

message[3]="<DIV ALIGN='Right'><A HREF='ktc_free_library_tech_tips_word.html' CLASS='homebodylinktext'>Tech Tips - Microsoft Word</A></DIV>"

var message2=new Array()

message2[0]="<DIV ALIGN='Right'><A HREF='ktc_our_services_network_design.html' CLASS='homebodylinktext'>Network Design & Support</A></DIV>"

message2[1]="<DIV ALIGN='Right'><A HREF='ktc_free_library_it_mgr.html' CLASS='homebodylinktext'>IT Manager Hints!</A></DIV>"

message2[2]="<DIV ALIGN='Right'><A HREF='ktc_client_solutions_testimonials.html' CLASS='homebodylinktext'>What Do Our Clients Say?</A></DIV>"

message2[3]="<DIV ALIGN='Right'><A HREF='ktc_free_library_product_demo.html' CLASS='homebodylinktext'>Does Your Business Need Sage CRM?</A></DIV>"

var message3=new Array()

message3[0]="<DIV ALIGN='Right'><A HREF='ktc_our_services_internet.html' CLASS='homebodylinktext'>Internet Services</A></DIV>"

message3[1]="<DIV ALIGN='Right'><A HREF='ktc_online_services_online_classes.html' CLASS='homebodylinktext'>Sign-Up for Our Online Classes!</A></DIV>"

message3[2]="<DIV ALIGN='Right'><A HREF='ktc_our_services_internet.html' CLASS='homebodylinktext'>Control Email SPAM with Postini!</A></DIV>"

message3[3]="<DIV ALIGN='Right'><A HREF='ktc_our_services_network_design.html' CLASS='homebodylinktext'>Security: How Good is Yours?</A></DIV>"

var message4=new Array()

message4[0]="<DIV ALIGN='Right'><A HREF='ktc_our_services_programming.html' CLASS='homebodylinktext'>Programming Services</A></DIV>"

message4[1]="<DIV ALIGN='Right'><A HREF='ktc_free_library_tech_tips_powerpoint.html' CLASS='homebodylinktext'>Tech Tips - Microsoft PowerPoint</A></DIV>"

message4[2]="<DIV ALIGN='Right'><A HREF='ktc_our_services_programming.html' CLASS='homebodylinktext'>Microsoft .NET Technologies</A></DIV>"

message4[3]="<DIV ALIGN='Right'><A HREF='ktc_client_solutions_client_solution_2.html' CLASS='homebodylinktext'>An Actual Client Experience!</A></DIV>"


var whichmessage=Math.floor(Math.random()*(message.length))
var whichmessage2=Math.floor(Math.random()*(message2.length))
var whichmessage3=Math.floor(Math.random()*(message3.length))
var whichmessage4=Math.floor(Math.random()*(message4.length))

//Broadcast random message below

document.write (" " + message[whichmessage] + " ");
document.write ("<BR>");
document.write (" " + message2[whichmessage2] + " ");
document.write ("<BR>");
document.write (" " + message3[whichmessage3] + " ");
document.write ("<BR>");
document.write (" " + message4[whichmessage4] + " ");
