// 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=3;        //Number of sentaces from 1 to 10

var texta1="authsec"
var texta2="Ross Technologies, Inc (RTGX)"
var texta3="Neo Technologies, Inc."

var text1="authsec is an information technology company offering comprehensive security services. Specializing in authoritative consulting, the company has substantial expertise in authentication and authorization solutions that address the needs of our private and public sector customers.";//;Sentance 1
var text2="Ross Technologies, Inc (RTGX) is a leader in providing technical solutions for modern business. RTGX's advanced team of experts act as the driving force of technology for organizations ranging from federal government to global industry. RTGX provides customers with a diverse and qualified choice for high-tech solutions to real-world problems.";//Sentance 2
var text3="Neo Technologies, Inc., is a computer hardware maintenance firm specializing in office equipment, network and graphic printers and document management solutions. ";//Sentance 3


//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><br><br>");

document.write(eval("text"+c));

<!--document.write("</FONT>");-->

if(bold=="yes"){document.write("</b>");}
if(italc=="yes"){document.write("</i>");}
if(under=="yes"){document.write("</u>");}
//-->