// Begin 

sCmnt = new Object();
sFrom = new Object();

var ad_cnt1 = 9;
var now1 = new Date()
var sec1 = now1.getSeconds()
var ad1 = sec1 % ad_cnt1;
ad1 +=1;

sCmnt[1] = "I will certainly always have it nearby as it has useful data that I need to refer to.";
sFrom[1] = "Ron Bertrand VK2DQ";

sCmnt[2] = "Bought it [ARC disc] recently. Impressed.";
sFrom[2] = "Neil M Barrowman GM0LTQ";

sCmnt[3] = "I was surprised! Job very well done. A very useful tool for the beginner of Amateur radio. Thanks.";
sFrom[3] = "Ben Koh VK6XC";

sCmnt[4] = "Hello,just wanted to tell you this is the best cd product on ham radio that i have,Keep up the good work,is excellent product. Tnks.";
sFrom[4] = "Velma Wardrip, Cookeville TN, USA";

sCmnt[5] = "The Amateur Radio Companion CD is a valuable compendium.  The implementation is robust and efficient.  It is a useful addition to my library.";
sFrom[5] = "John Herter VE6ISS";

sCmnt[6] = "I've received your ARC CD and I'm very pleased with it and impressed with what a lot of work you've done to get it together.";
sFrom[6] = "Neil Cordes";

sCmnt[7] = "Thanks for a great product and fast shipping.";
sFrom[7] = "Tracy Lambeth";

sCmnt[8] = "Good product.";
sFrom[8] = "Jim Brown-Sarre";

sCmnt[9] = "The Amateur Radio Companion is great .. congratulations, a fine piece of work.";
sFrom[9] = "Parry VK3JPP ";

document.write('<ul>');

for (var i=ad1; i <= (ad1+3); i++) {
  cmnt = i;
  if (cmnt > ad_cnt1) {cmnt = cmnt-ad_cnt1};

  document.write('<li>&quot;' + sCmnt[cmnt] + '&quot;<br><b><i>' + sFrom[cmnt] + '<\/i><\/b>');
}

document.write('<\/ul>');
      
// End -->
