



function makeFlashyLink(linkTarget,linkText,linkColor,linkHiColor) {
    return  "<a href=\"" + linkTarget +
            "\"><font color=" + linkColor +
            " onmouseover=\"this.style.color='" + linkHiColor +
            "'\" onmouseout=\"this.style.color='" + linkColor +
            "'\">" + linkText + "</font></a>";
}


function writeFlashyLink(linkTarget,linkText,linkColor,linkHiColor) {
    document.write(makeFlashyLink(linkTarget,linkText,linkColor,linkHiColor,0));
}

"#000000","#C00000"

function writeFlashyLinkIconGo(linkTarget,linkText) {
    document.write("<font size=3><strong><a href=\"" + linkTarget +
            "\"><font color=#000000 onmouseover=\"this.style.color='#C00000'\" onmouseout=\"this.style.color='#000000'\">" +
            "<img src=\"image/icongo.gif\" height=35 width=88 align=middle border=0 />" +
            linkText + "</font></a></strong></font><br>");
}

function writeFlashyLinkIconBack(linkTarget,linkText) {
    document.write("<font size=3><strong><a href=\"" + linkTarget +
            "\"><font color=#000000 onmouseover=\"this.style.color='#C00000'\" onmouseout=\"this.style.color='#000000'\">" +
            "<img src=\"image/iconback.gif\" height=35 width=88 align=middle border=0 />" +
            linkText + "</font></a></strong></font><br>");
}


function writeColumnEntry(index) {
    if (index==1)
        document.write(
            "<strong>MindPeer™</strong><br>" +
            "<a href=\"products.html\"><img src=\"image/mindpeers.gif\" height=43 width=58 border=0/></a><br>" +
            "Discover MindPeer™ technology at the " +
            makeFlashyLink("products.html","products page","#000000","#C00000") + "."
            );
    else if (index==2)
        document.write(
            "<strong>Latest News</strong><br>" +
            "<a href=\"news.html\"><img src=\"image/partnersclients/crystaltelesyss.gif\" height=47 width=75 border=0/></a><br>" +
            "9.12.00 Crystal Telesys chooses neurad technologies for major data processing venture. " +
            "Read more at the " +
            makeFlashyLink("news.html","news page","#000000","#C00000") + "."
            );
    else if (index==3)
        document.write(
            "<strong>MindPilot&reg;</strong><br>" +
            "<a href=\"mindpilot.html\"><img src=\"image/mindpilot/elitesides.jpg\" height=66 width=80 border=0/></a><br>" +
            "Explore the different MindPilot&reg; systems at the " +
            makeFlashyLink("mindpilot.html","MindPilot&reg; page","#000000","#C00000") + "."
            );
    else if (index==4)
        document.write(
            "<strong>neurad members</strong><br>" +
            "<a href=\"becomemember.html\"><img src=\"image/mindpilot/pilothead.jpg\" height=90 width=94 border=0/></a><br>" +
            "Why become a neurad member?  Find out at the " +
            makeFlashyLink("becomemember.html","Become A Member page","#000000","#C00000") + "."
            );
    else if (index==5)
        document.write(
            "<a href=\"techspec.html\"><img src=\"image/mindpilot/stdsidetech.jpg\" height=72 width=88 border=0/></a><br>" +
            "See the details of the MindPilot&reg; system at the " +
            makeFlashyLink("techspec.html","Technical Specifications page","#000000","#C00000") + "."
            );


    document.write("<p>");
}


