
// ---------------------------- Review Database Begins Here ---------------------------- //

var Q = new Array();	// quote list
var C = new Array();	// company list
	Q[0] = 'Engaging, entertaining, not boring!'; C[0] = 'Fleming Group, CA';
	Q[1] = 'Very effective <I>and</I> entertaining'; C[1] = 'Allied Signal, MD';
	Q[2] = 'Outstanding in every respect'; C[2] = 'Isis Group, CA';
	Q[3] = 'Extraordinary!'; C[3] = 'SRI International, CA';
	Q[4] = 'Listened to every word'; C[4] = 'LTI, PA';
	Q[5] = 'A1'; C[5] = 'Ontario Battery Services, ON';
	Q[6] = 'Fascinating'; C[6] = 'Woodward Governor, CO';
	Q[7] = 'A+'; C[7] = 'Autoloc Inc., PQ';
	Q[8] = 'Outstanding &#8230; a true professional'; C[8] = 'Onan Corporation, MA';
	Q[9] = 'One of the best I&#8217;ve ever experienced!'; C[9] = 'Meyer Sound Laboratories, CA';
	Q[10] = 'A first class speaker and a very good salesman'; C[10] = 'Datech Systems Research, CA';
	Q[11] = 'The best &#8212; I am a teacher and my jaw drops open'; C[11] = 'Garry Harris &amp; Partners, NY';
	Q[12] = 'Very imaginative, informative presentation'; C[12] = 'Pro-Water Technologies, CA';
	Q[13] = 'Best speaker I have ever heard'; C[13] = 'Q-vid Engineering, NM';
	Q[14] = 'Really excellent'; C[14] = 'Diebold Inc., OH';
	Q[15] = 'Fantastic'; C[15] = 'Invostar Inc., CA';
	Q[16] = 'Top notch'; C[16] = 'Magnetek Drives &amp; Systems, WI';
	Q[17] = 'One of the best'; C[17] = 'Ford Engineering, FL + Marlin Manufacturing, OH';
	Q[18] = 'Could have listened for hours'; C[18] = 'Honeywell Satellite Systems, AZ';
	Q[19] = 'Great speaker'; C[19] = 'AT&amp;T, NJ';
	Q[20] = 'Terrific presentation'; C[20] = 'Rapid Access Systems, AB';
	Q[21] = 'Great'; C[21] = 'Department of Defense, MD';
	Q[22] = 'Score of 11 on a scale of 1-10. Extraordinary presenter'; C[22] = 'The Warm Company, CA';
	Q[23] = 'One of the best presenters I&#8217;ve ever had the pleasure of hearing'; C[23] = 'Analog Devices, MA';
	Q[24] = 'He was great &#8212; couldn&#8217;t be better'; C[24] = 'Practical Energy Group, NY';
	Q[25] = 'Articulate, entertaining'; C[25] = 'Westinghouse Security Electronics, CA';
	Q[26] = 'Very polished, effective presentation'; C[26] = 'Arrow Electronics, ON';
	Q[27] = 'Superb &#8212; good style &amp; knowledge'; C[27] = 'Infinity Computer Services, OH';
	Q[28] = 'Superb presentation. I&#8217;ve seen and heard enough to be motivated'; C[28] = 'Lapson Engineering, CA';
	Q[29] = 'Very informative and effective'; C[29] = 'Candide Electric, NC';
	Q[30] = 'Perfect'; C[30] = 'Novell Inc., CA + U. of Delaware, DE + Creative Design Technologies, MI';
	Q[31] = 'Super'; C[31] = 'IMI Cornelius, MA + ATI, PA';
	Q[32] = 'Extremely effective'; C[32] = 'General Motors Advanced Engineering, MI';
	Q[33] = 'An excellent speaker and an excellent salesman'; C[33] = 'Structural Instrumentation, Inc., WA';
	Q[34] = 'Delightful, pleasant, and knowledgeable'; C[34] = 'Almaden Systems, CA';
	Q[35] = 'Excellent and entertaining'; C[35] = 'DWA Inc., MD';
	Q[36] = 'He was wonderful'; C[36] = 'GM North American Truck, MI';
	Q[37] = 'Exceptional'; C[37] = 'NICE, Inc., CA';
	Q[38] = 'He is the best'; C[38] = 'Union Camp Corp., NJ';
	Q[39] = 'Excellent'; C[39] = 'Lockheed Space Operations, FL + Rockwell Int&#8217;l, OH + Sharp Electronics, NJ + U.S. Army Communications Command, NJ + Packard Electric, OH + National Institutes of Health, MD + Northern Telecom, ON + Ontario Ministry of Transportation, ON + Allen-Bradley, WI + BART, CA + Boeing Space &amp; Defense Group, WA';
	Q[40] = 'Outstanding!!!'; C[40] = 'Trimble Navigation, CA + Ontario Hydro, ON + Dorado Systems Corp., CA + Matrix Corporation, NC + Parker Berten Aerospace, CA';

// ---------------------------- Scroller Code Begins Here ---------------------------- //

// scroller parameters
var step = 1;
var scrollSpeed = 30;	// lower is faster
var panelWidth = 220;
var panelHeight = 287;
var leader = 100;		// leading space used for initial scroll-in
var trailer = 0;		// trailing space allowed at end of scrolled text

// Scroller Functions

function scrollDown() {		// scroll down
	scrollStop();
	if (iens6 && parseInt(crossobj.style.top) > (panelHeight-contentHeight-trailer))
		crossobj.style.top = parseInt(crossobj.style.top) - step + "px";
	else if (ns4 && crossobj.top > (panelHeight-contentHeight-trailer)) crossobj.top -= step;
	scrolltimer = setTimeout("scrollDown()",scrollSpeed);
}

function scrollUp() {		// scroll up
	scrollStop();
	if (iens6 && parseInt(crossobj.style.top) < 0)
		crossobj.style.top = parseInt(crossobj.style.top) + step + "px";
	else if (ns4 && crossobj.top < 0) crossobj.top += step;
	scrolltimer = setTimeout("scrollUp()",scrollSpeed);
}

function scrollStop() {			// stop scrolling
	if (window.scrolltimer) clearTimeout(scrolltimer);
}

/* function scrollTop() {
	scrollStop();
	if (iens6) crossobj.style.top = 0 + "px";
	else if (ns4) crossobj.top = 0;
} */

function getContentHeight() {
	if (iens6) contentHeight = crossobj.offsetHeight;
	else if (ns4) document.nscontainer.document.nscontent.visibility = "show";
}


// ---------------------------- In-Line Code Begins Here ---------------------------- //

// Scroller Pre-Panel Code
var iens6 = document.all || document.getElementById;
var ns4 = document.layers;
if (iens6) {	// container setup
	document.write('<DIV ID="container" STYLE="position:relative;width:' + panelWidth + 'px;height:' + panelHeight + 'px;overflow:hidden;" ONMOUSEOVER="scrollUp();" ONMOUSEOUT="scrollDown();">');
	document.write('<DIV ID="content" STYLE="position:absolute;width:' + panelWidth + 'px;left:0px;top:0px;">');
}
document.write('<ILAYER NAME="nscontainer" WIDTH="' + panelWidth + '" HEIGHT="' + panelHeight + '" CLIP="0,0,' + panelWidth + ',' + panelHeight + 'VISIBILITY="hidden">');
document.write('<LAYER NAME="nscontent" WIDTH="' + panelWidth + '" HEIGHT="' + panelHeight + '">');

// Generate Panel Content
document.write('<H1>What Audiences Have Said&#8230;</H1>')
for (i=0; i<Q.length; i++) {
	document.write('<P>&#8220;' + Q[i] +
	'&#8221;<BR><SPAN CLASS="author">' + C[i] +
	'</SPAN></P>');
}
document.write('<div align="center"><img src="images/jdsilhouette.gif" alt="John Dayman Silhouette" width="195" height="287"></div>');

// Scroller Post-Panel Code
document.write('</LAYER></ILAYER>');
if (iens6) {
	document.write('</DIV></DIV>');
	var crossobj = document.getElementById ? document.getElementById("content") : document.all.content;
	var contentHeight = crossobj.offsetHeight;
} else if (ns4) {
	var crossobj = document.nscontainer.document.nscontent;
	var contentHeight = crossobj.clip.height;
}
window.onload = getContentHeight;
if (iens6) crossobj.style.top = leader;
  else crossobj.top = leader;
scrollDown();

