// JavaScript Document

// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = " \"What you should really focus on is whether someone has the potential to go two or three levels beyond where they are today. Caliper helps us do that.\" - Dave Lawson, Vice President of Human Resources, Franciscan Health System.";
Quotation[1] = "\"Tapping into, understanding and focusing on each individual's inner motivations is the surest way for managers to develop a productive workforce.\" - Herb Greenberg, Founder and CEO, Caliper ";



// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
