// JavaScript Document
var Quotation=new Array()
Quotation[0] = "Of most significance was the integrity of the participants and the honesty of the process.";
Quotation[1] = "Valuable process. Syntegrity offered a way to organize an idea and knowledge into action plans.  There is a need to control such a process and it was done very well.";
Quotation[2] = "You think you know a lot but can always learn from others.  Great collective learning.  I enjoy meetings where ideas come about by virtue of being in the room.  This happened a number of times. Syntegration technique would have applications in many other jurisdictions. ";
Quotation[3] = "Incredibly positive and you come out with a humbleness and respect for colleagues. ";
Quotation[4] = "Incredibly positive session.  With some other facilitation you just can’t wait to leave.  This was incredibly productive – a great way to do this!";
Quotation[5] = "We’ve been working on this challenge a long time and this process brought the spark back";
Quotation[6] = "Interesting process for getting most out of brilliant minds and getting their contribution and results";
Quotation[7] = "Impressed with the level playing field created amongst participants – it worked and I’m very impressed";
Quotation[8] = "This process works – loved the critic role ... kept us focused.  I’ve been in many meetings and this is one of the most effective processes I’ve ever been involved in.";
Quotation[9] = "Effective multi-disciplinary approach ... exciting how it all gelled together";
Quotation[10] = "Integration of people of diverse backgrounds was a first ... should be repeated";
Quotation[11] = "In the end, the subtleties I was worried would get lost were still included in the output";
Quotation[12] = "10 out of 10. This was the best planning meeting that our Senior Management Team ever held.";
Quotation[13] = "This process is a powerful way to build organizational culture and understanding, and to get real work done at the same time.";
Quotation[14] = "Everyone has the same picture now. In my eyes this is the most important goal we reached.";
Quotation[15] = "Impressed with the format which kept people on target, and impressed with the integrated, comprehensible recommendations. Amazed we could tackle so many aspects so quickly.";
Quotation[16] = "Excellent exchanges. Surprised and heartened by the breadth and appetite for change.";
Quotation[17] = "For the first time, I feel that the team I work with is no longer a footnote. I have accomplished something major. I also noted the efforts of the other groups to integrate my thinking with theirs.";
Quotation[18] = "The way the process allows all of us to have a voice and build the strategic goals and objectives is an advancement over ways we have worked in the past.";
Quotation[19] = "When we started, there were a lot of questions. Today, we have many answers.";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();