var comments = new Array(
"Why did I buy?<br /><br />The PC with the tools loaded as well as the POD books.<br /><span class=\"comment_by\">--A.M.<br />2005 Washington DC class</span>",
"Why did I buy?<br /><br />...a complete toolkit that I can start using today. Plenty of training on dvd that I can go through at my own pace.<br /><span class=\"comment_by\">--W.V.<br />Feb. Chicago class</span>",
"Highly recommended.<br /><span class=\"comment_by\">--anon.<br />Feb. Houston class</span>",
"Why did I buy?<br /><br />[Laura\'s] reputation -- Mainly I wanted the training after hearing of others\' experiences.<br /><span class=\"comment_by\">--Anon.<br />Feb. Chicago class</span>",
"Why did I buy?<br /><br />The overall value of a small class with Laura, and the added bonus of the hardware/ software combination.<br /><span class=\"comment_by\">--G.R.<br />2005 New York class</span>",
"Great Deal.<br />Great Stuff.<br /><span class=\"comment_by\">--Anon. HP empl.<br />Feb. Houston class - Of course he said he\'d prefer an HP laptop to the Dell ;-)</span>",
"I plan on using the information to work toward obtaining my CCSP (Cisco Certified Security Professional) certification.  I wanted to have a better understanding of the mechanics behind examining network traffic and protocols.<br /><br />The Master Library series is invaluable toward obtaining that knowledge.<br /><span class=\"comment_by\">--G.A.<br />2005 New York class</span>",
"Why did I buy?<br /><br />I was primarily interested in meeting Laura, listening to her real-world incidents as well as getting a copy of her Master Library series and a Linux security box.<br /><span class=\"comment_by\">--G.A.<br />2005 New York class</span>",
"I’ve been attending Laura’s sessions at BrainShare for many years, so any opportunity to work with her directly in a class was all I wanted…<br /><span class=\"comment_by\">--S.M.<br />2005 New York class</span>",
"Make it longer!!! – It is very useful. <br /><span class=\"comment_by\">--N.P.<br />2005 Minneapolis class</span>",
"I have heard Laura talk before and she is so interesting.  It’s great to be able to learn some of what she does.  Having the laptop and access to all the tools helped me to learn and apply things that she was saying.<br /><span class=\"comment_by\">--S.M.<br />2005 Minneapolis class</span>",
"Excellent Job! I see all of the components being very valuable and relevant.<br /><span class=\"comment_by\">--C.F.<br />Feb. Houston class</span>",
"You walk away with a fully configured system, ready to use.<br /><span class=\"comment_by\">--anon.<br />Feb. Houston class</span>",
"Why did I buy?<br /><br />Laura Chappell live, plus DVD training.<br /><span class=\"comment_by\">--anon.<br />Feb. Houston class</span>",
"I have attended every class Laura has had at brainshare for the last 3 years and it was never enough. This was a way to work with Laura in an almost one on one, and that is worth the money.  You can never have enough of Laura if you have any interest at all in network analysis.<br /><span class=\"comment_by\">--J.M.<br />2005 Los Angeles class</span>",
"Having Laura Chappell teach class in person-- definitely worth a ten!<br /><span class=\"comment_by\">--L.C.<br />2005 New York City class</span>",
"Why did I buy?<br /><br />The overall value in terms of learning, function (hardware set up and ready to go) and the time with the instructors (especially Laura).<br /><span class=\"comment_by\">--N.P.<br />2005 Minneapolis class</span>",
"Why did I buy?<br /><br />One stop shop for all the tools and a machine dedicated to the use of those tools. Also the training was a big plus.<br /><span class=\"comment_by\">--T.H.<br />2005 Washington DC class</span>");

function UpdateComment(cnum,qnum){
 var cnum = cnum || 0;
 var qnum = qnum || 0;
 if (cnum == 0) {
  var r, r2, Comment = document.getElementById("comment_1");
  r=Math.floor(Math.random()*comments.length);
  Comment.innerHTML = comments[r];
  do{
    r2=Math.floor(Math.random()*comments.length);
  } while (r==r2);
  Comment = document.getElementById("comment_2");
  Comment.innerHTML = comments[r2];
  r = r2;
 } else {
 var r, Comment = document.getElementById("comment_" + String(cnum));
 do{
   r=Math.floor(Math.random()*comments.length);
 } while (r==qnum);
 Comment.innerHTML = comments[r];
 }
 window.setTimeout("UpdateComment("+((cnum == 1) ? 2 : 1)+","+r+");", 10 * 1000);
}
