// JavaScript Document

var reports = new Array();
reports[0]= "\"I really love having access to the VCL. I am so grateful to have access to SAS and SPSS from outside the Unity computer labs. This is a great service, and I hope you'll keep advertising its availability.  Thank you!\"";
reports[1]= "Jennifer Hill, MS in Analytics student";

reports[2]= "\"The Industrial & Systems Engineering department is discussing saving approximately $20,000 per year in equipment costs and another 20% to 40% in manpower costs by switching to VCL. We have a master's degree engineer on our staff who spends about 20% to 40% of his time maintaining the computers.  Our engineer will only maintain the image for VCL which takes almost no time.  His time now can be spent on more productive things.  The funds saved will be redirected to support faculty and student needs.\"";
reports[3]= "Robert Young, professor ISE";

reports[4]= "\"One faculty member that spurned VCL until his first class in which students were required to bring in their own laptop with the course software installed.  He discovered that the installs were not the same and some examples wouldn't run on some students laptops.  Some had purchased the wrong version of the software, some had installed it incorrectly, some had installed additional software that overwrote the library files needed by his course software, etc.  After two weeks he switched to VCL and these problems went away as he had complete version control for the software the students were using. He also didn't have to require the students to purchase the software.\"";
reports[5]= " ";

var len= reports.length;
var ctr= 0;
var reportDelaySeconds= 30;

function changeReport()
{
 if (ctr >= len)
    {
    ctr= 0;
    }
 elem1 = document.getElementById("reportText");
 elem1.firstChild.nodeValue = reports[ctr];
 ctr++;
 elem2 = document.getElementById("reportAuthor");
 elem2.firstChild.nodeValue = reports[ctr];
 ctr++;
 TimerId= setTimeout("changeReport()",1000 * reportDelaySeconds);
}
