// JavaScript Document
function cell(){
var element = new Array(num_elements);




// edit this section :

var num_elements = 3;

element[0] = "We would like to thank you for the excellent support and customer service that we have received during our AC crisis. <br><i>- Ed Manaois, Headend Supervisor Vancouver West, Shaw Cablesystems</i>";
element[1] = "Knowledgeable, focused, thorough.  Cool Air has always come through when we have an emergency.<br><i>- Rob Noel, President, BC Comfort Air Conditioning Ltd.</i>";
element[2] = "You had to complete the project under severe time constraints and provided an installation that was attractive, efficient and very effective.<br><i>- David Clark, President, BC Event Management</i>";
 
 
 
// end of editable area





 

var x = Math.floor(Math.random()*num_elements)
document.write(element[x]);
}