 
//function plQuote(){
var numQuotes = 17;
var quote = new Array(numQuotes);

// for ( var i=0; i<numQuotes; i++ )
// new String();
   quote[0]= '"...you are now my first choice for quality linens..."';
   
   quote[1] = '"...Your linen fabric is the best we\'ve used after trying many..."';
   quote[2] = '"...Our embroidery on your bleached white linen is \'stunning\'..."';
   quote[3] = '"...The linen is fantastic! The colour spectrum we achieved with the digital reactive ink set is spectacular...."';
   quote[4] = '"...I will be adding the linen to our stock fabric list... Thanks for all your help, samples and wonderful service..."';
   quote[5] = '"...The parcel arrived safely yesterday,  the linen is so beautiful, many thanks for your help..."';
   quote[6] = '"...Thank you very much for the bed linen. It is just as beautiful as the earlier sets I ordered. I am hooked on these sheets..."';
   quote[7] = '"...I really like your products..."';
   quote[8] = '"...and your range of fabrics alone is gorgeous."';
   quote[9] = '"...I really like the fabric, it\'s beautiful and good quality" ... "definitely I will order more in the future..."';
   quote[10] = '"...we received the napkins today, thank you they\'re lovely..."';
   quote[11] = '"It looks superb and I\'m very pleased with the quality. Thank you very much for very good and quick service"';
   quote[12] = '"...my linen has arrived safely. The fabric looks lovely. I look forward to working with it..."';
  quote[13] = '"...Love the linen sheets, great quality. Many thanks..."';
  quote[14] = '"...I am more than impressed with the quality of the Linen I purchased from you"';
  quote[15] = '"...The bed linen is amazing! It feels like you\'re sleeping in fresh sheets every day..."';
  quote[16] = '"...I love your stock! I will be back for another order soon..."';


//var whichquote=Math.floor(Math.random()*(numQuotes));
 
document.write(quote[Math.floor(Math.random() * quote.length)]);
//document.write(quote[1]);
 
//}  

 