﻿//store the quotations in arrays
quotes = new Array(16);
quotes[0] = "Teach allows you to monitor your entire class in just one click.";
quotes[1] = "Teach places user-friendliness as top priority so that you may conduct lessons with ease.";
quotes[2] = "You can use Teach to manage a large number of computers with unparalleled performance.";
quotes[3] = "You may broadcast a single video to every student computer in the entire classroom.";
quotes[4] = "The software is being used in lectures with 200 student computers at one go.";
quotes[5] = "Using the question editor that comes with the software, you can create various types of questions for surveys, polls, quizzes and exams.";
quotes[6] = "During Screen Broadcast, you may let any student take control of your computer. This is very useful for asking students to demonstrate their solutions.";
quotes[7] = "With Teach's webcam and microphone support, your students can see and talk to you even from their computers.";
quotes[8] = "You can annotate your screen with colored markers and shapes - just like a regular whiteboard!";
quotes[9] = "When System Lock is turned on, even the Ctrl+Alt+Del key combination will be disabled.";
quotes[10] = "Internet Lock in Teach works across all browsers and Internet applications.";
quotes[11] = "Teach has over 30 powerful features.";
quotes[12] = "Teach doesn't slow down your computer.";
quotes[13] = "Teach supports true video streaming.";
quotes[14] = "Teach is highly scalable.";
quotes[15] = "Teach is extremely easy to use.";
quotes[16] = "Even when performing the most demanding tasks such as video broadcasting to hundreds of computers, Teach's efficiency is not compromised.";
quotes[17] = "Device Lock, which disables removable storage devices such as thumb drives, CD-ROM and floppy diskettes, is a feature unique to Junglebyte Teach.";
quotes[18] = "With Teach's high quality broadcasting, every student enjoys an unobstructed front-row view of the teacher's computer screen.";


//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<table border=0 cellspacing=0 cellpadding=0><tr><td bgcolor=#c0c0c0 height=20 style=padding-left:5px><p><strong>Did you know?</strong></p></td></tr>");
document.write("<tr><td bgcolor=#808080 height=1></td></tr>");
document.write("<tr><td bgcolor=#f8f8f8 style=padding:5px;><img src=images/icons/didyouknow.gif height=24 width=24 border=0 align=left>");
document.write(quotes[index] + "</td></tr>");
document.write("<tr><td bgcolor=#808080 height=1></td></tr></table>");