// JavaScript Document
<!--
//Random Text Script
var fcolor="#ffffff"  //font color
var fface="verdana";//font face
var fsize=1;      //font size
var bold="no";   //Bold?
var italc="no";  //Italic?
var under="no";   //Underlined?
var max=5;        //Number of sentaces from 1 to 10

var texta1=" "
var texta2=" "
var texta3=" "
var texta4=" "
var texta5=" "

var textb1=""
var textb2=""
var textb3=""
var textb4=""
var textb5=""

var text1="Magothy showed us how we could save money and continue to protect our data.  Their knowledge and expertise was invaluable and we acheived a higher return on investment then we originally calculated.";//;Sentance 1
var text2="Who knew our network was so vulnerable to hackers and malicious data?  Magothy did.  They came in performed the necessary network and security assesments.  We now are better positioned to protect our data.";//Sentance 2
var text3="We have so many business partners, it's hard to keep track sometimes.  Magothy Technology help streamline our process and now our network management problems are non-existent.";//Sentance 3
var text4="Routing problems seemed to crop up in our network all the time.  We contacted Magothy and they got our IT people up to speed with training and supported us until we were ready to take on the challenge of managing our own network."
var text5="Our data is constantly changing.  We get submissions from all types of sources.  Magothy showed us an efficient way to scrub the data and make sure it wasn't harmful to our environment."

//Dont modify anything below this line
var r=Math.floor(Math.random()*max);
var c=r+1;

if(bold=="yes"){document.write("<b>");}
if(italc=="yes"){document.write("<i>");}
if(under=="yes"){document.write("<u>");}

document.write("<span class='blue'><strong>");
document.write(eval("texta"+c));
document.write("</strong></span>");
document.write(eval("textb"+c));
document.write("<br><br>");
document.write("<img src='images/1sym1.jpg' alt='quotes2'>");
document.write("&nbsp;&nbsp;");
document.write(eval("text"+c));
document.write("&nbsp;");
document.write("<img src='images/1sym2.jpg' alt='quotes2'>");

<!--document.write("</FONT>");-->

if(bold=="yes"){document.write("</b>");}
if(italc=="yes"){document.write("</i>");}
if(under=="yes"){document.write("</u>");}
//-->
