// JavaScript Document

var Quotation=new Array()

Quotation[0] = "\"My computer has been slow for years. Your service made it fast again.\"<br> - Bob W.  Lincoln, NE";
Quotation[1] = "\"I was impressed with the patience and professionalism of your technician.\"<br> - James W.  Augusta, GA";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();





