var sid="rndmsg";


function MakeArray(n) {                 
   this.length = n;
   for (var i = 1; i <= n; i++) { 
     this[i] = 0 }
     return this
}



function RandomNumber(sid) {
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;  
}



function genrndmsg() {
	var appname= navigator.appName;             
	var appversion=parseInt(navigator.appVersion);
	if (appname == "Netscape" && appversion >= 3){
	var testNum = Math.random(); }
	else {
	var testNum = RandomNumber(sid);}


// ADD/REMOVE QUOTES HERE
// WHEN ADDING QUOTES, IT IS IMPORTANT TO FOLLOW THE PATTERN AS BELOW INCLUDING BACKSLASHES AND QUOTES
//remember to change according to number of items in the array below
var howmanyitems=5;

//remember to load the array with items
var x=0;
var y=0;
var items = new MakeArray(howmanyitems);
items[0]=howmanyitems;
items[1]="\"Combining talent, creativity, and unmatched service, Etimes3 delivered innovative web solutions to P&H.  Their personal approach and commitment to our complete satisfaction was magnificent.\"<br><br><i>Ralph Dangelmaier<br>Sr. Vice President<br>Politzer &amp; HANEY</i>";
items[2]="\"Total solutions, total professionalism, total service — working with Etimes3 redefines 'partnership.' They listened to what we needed, worked with us the whole way, and then delivered a slam dunk solution…Yeah, they’ve got the stuff.\"<br><br><i>Mike Werner<br>Microsoft Corporation</i>"; 
items[3]="\"The professionalism, creativity, competence, and service that Etimes3 displayed was remarkable… Working with us, they developed innovative solutions in aggressive timelines that helped us reach our business goals… they are a truly first-rate outfit.\"<br><br><i>Rhonda Swain<br>Intuit Inc.</i>";
items[4]="\"Etimes3 does a lot more than build impressive-looking web sites, they are helping us leverage technology to directly benefit the way we interact with our customers and distribution channel...that will make a difference to our bottom line.\"<br><br><i>Robert Sheridan</i><br><i>President</i><br><i>Savings Bank Life Insurance</i>";
items[5]="\"Etimes3 really did an amazing job in such a short amount of time.  Their insights and strategy assistance were invaluable!!!  We had a very positive experience with Etimes3 and look forward to leveraging their services again.\"<br><br><i>Kristen Duerr<br>Sr. VP, Publisher<br>Course Technology</i>";



y=1/howmanyitems;
for(x= 1; x <= howmanyitems; x++) {
	//while(sid!="rndmsg"){};
	if ( testNum > ( howmanyitems  - x ) * y ) {
		document.write(items[x]);
		break; }
}	}

