    <!--- Hide from non-javascript browsers

    // Script By NewRelic
    
    var textMinPC         = "You need to at least meet the PC Requirement before you are ready to take an online class. ";
    var textMinMac        = "If you plan on taking courses that don't employ Microsoft Windows, you may be able to use an Apple Macintosh or other computer system that meets the minimum hardware requirements. Check with your instructor. ";
    var textWord          = "All courses use Microsoft Word. You must have it for online courses. ";
    var textOffice        = "Microsoft Office 2007 is required for all Windows-based online courses. Office XP or higher is sufficient for non-Office courses. ";
    var textWin98         = "You must have Microsoft Windows XP or higher. ";
    var textIE5           = "The Microsoft Internet Explorer browser (Ver. 6.0 or higher) is required for participation in all online courses.";
    var textEmailClient   = "An E-mail client or Web-based account is required for all online courses.";
    var textAcrobat       = "Adobe Acrobat Reader (Ver. 8.0 or higher) is required for all online courses.";
    var textFTPClient     = "An FTP client is required for all online Web site development courses. Check with your instructor if not sure.";
    var textZIP           = "You will need an archive program that can extract ZIP-format files. ";
    var textGenInternet   = "It is recommended that you learn more about browsing and using the Internet before taking an online course. ";
    var textGenEmail      = "It is highly recommended that you learn more about using e-mail before taking an online course.";
    var textEmailAttach   = "You are strongly urged to learn how to use e-mail attachments before taking an online course.";
    var textDownload      = "It is imperative that you learn how to download files from the Internet before taking an online course.";
    var textUseZIP        = "An archiviving and extracting program is required for participation in CIT online courses (NOTE: A file archiving feature is included with Windows XP or higher). ";
    var textUseFTP        = "Before taking an online course in Web site development, it is highly recommended that you learn how to use an FTP client.";
    var textUseAcrobat    = "Familiarity with Adobe Acrobat Reader and the PDF format is required for all online course participants.";

    // Final Message
    var FM = new Array();
    FM[1] = textMinMac;
    FM[2] = textWord;
    FM[3] = textOffice;
    FM[4] = textWin98;
    FM[5] = textIE5;
    FM[6] = textEmailClient;
    FM[7] = textAcrobat;
    FM[8] = textFTPClient;
    FM[9] = textZIP;
    FM[10] = textGenInternet;
    FM[11] = textGenEmail;
    FM[12] = textEmailAttach;
    FM[13] = textDownload;
    FM[14] = textUseZIP;
    FM[15] = textUseFTP;
    FM[16] = textUseAcrobat;


    var SCORE = 0;


    // Gets Called when No is Clicked on Min PC Requirements.
    function NeedMinPC() {
    document.write("<TABLE WIDTH='456' HEIGHT='81' ALIGN='CENTER'><TR><TD><IMG SRC='result.gif' alt='survey results banner'><BR>");
    document.write(textMinPC);
    document.write("</TD></TR></TABLE>");
    }
    
    // Checks score and prints out a message depending on the result.

    function tallyScoreResult() {

    document.write("<TABLE WIDTH='456' HEIGHT='81' ALIGN='CENTER'><TR><TD><IMG SRC='result.gif'><BR>");

    // This IF Statement takes out the General Information if they scored a perfect 20
    if (
    FM[1] == "" && FM[2] == "" && FM[3] == "" &&
    FM[4] == "" && FM[5] == "" && FM[6] == "" &&
    FM[7] == "" && FM[8] == "" && FM[9] == "" &&
    FM[10] == "" && FM[11] == "" && FM[12] == "" &&
    FM[14] == "" && FM[15] == "" && FM[16] == "") {
    }

    else {
    document.write("<B><U>Recommendations</U></B><BR>" 
    +FM[1]    +FM[2]
    +FM[3]    +FM[4]    +FM[5]
    +FM[6]    +FM[7]    +FM[8]
    +FM[9]    +FM[10]   +FM[11]
    +FM[12]   +FM[13]   +FM[14]
    +FM[15]   +FM[16]+           "<BR><BR>");
    }

        if (SCORE < 7) {
    document.write("<B><U>Results</U></B><BR>"); 
    document.write("You scored " +SCORE+ " on the survey, which indicates that you are not quite prepared to take an online course. It is suggested that you obtain additional training in computer technology and software and/or upgrade your computer equipment to meet the minimum software and hardware requirements.");     document.write("</TD></TR></TABLE></CENTER>");
    document.write("</TD></TR></TABLE>");
    }

        if (SCORE >= 7 && SCORE < 16) {
    document.write("<B><U>Results</U></B><BR>"); 
    document.write("You scored " +SCORE+ " on the survey. Before taking an online course, you should strengthen your skills or upgrade your equipment relaled to the areas listed above:");    
    document.write("</TD></TR></TABLE>");
    }

        if (SCORE >= 16 && SCORE <= 20) {
    document.write("<B><U>Results</U></B><BR>"); 
    document.write("Congradulations, you scored " +SCORE+ " on the survey. You appear to have satisfied the minimum general requirements necessary to participate in an online course in the CIT Department at COC.");    
    document.write("</TD></TR></TABLE>");
    }

        if (SCORE > 20) {
    document.write("There were problems adding up your total, please re-take the survey, and make sure you only click each field once.");
    }

    return false;
    
    }

    // Add Points to Score when a check box or radio is clicked
    function addPoints(name,theValue) {
    
    // Fix Message Depending on new information.
    if (name == "MinMac" && theValue == 1) {
    FM[1] = "";
    }
    if (name == "Word" && theValue == 1) {
    FM[2] = "";
    }
    if (name == "Office" && theValue == 1) {
    FM[3] = "";
    }
    if (name == "Win98" && theValue == 1) {
    FM[4] = "";
    }
    if (name == "IE5" && theValue == 1) {
    FM[5] = "";
    }
    if (name == "EmailClient" && theValue == 1) {
    FM[6] = "";
    }
    if (name == "Acrobat" && theValue == 1) {
    FM[7] = "";
    }
    if (name == "FTPClient" && theValue == 1) {
    FM[8] = "";
    }
    if (name == "ZIP" && theValue == 1) {
    FM[9] = "";
    }
    if (name == "GenInternet" && theValue == 1) {
    FM[10] = "";
    }
    if (name == "GenEmail" && theValue == 1) {
    FM[11] = "";
    }
    if (name == "EmailAttach" && theValue == 1) {
    FM[12] = "";
    }
    if (name == "Download" && theValue == 1) {
    FM[13] = "";
    }
    if (name == "UseZIP" && theValue == 1) {
    FM[14] = "";
    }
    if (name == "UseFTP" && theValue == 1) {
    FM[15] = "";
    }
    if (name == "UseAcrobat" && theValue == 1) {
    FM[16] = "";
    }

    var newTheValue = eval(theValue);
    SCORE = eval(SCORE + newTheValue);
    return false;
    }

    // Resets Score on Event of Reset button being clicked
    function reset() {
    SCORE = 0;
    }


    // Stop Hiding --->
