function showDiv(divName) {
    document.getElementById(divName).className='visDiv';
}

function hideDiv(divName) {
    document.getElementById(divName).className='hidDiv';
}

function showFact() {
    var randomFact= Math.floor(Math.random()*11);
    if ( randomFact==0 ) {
        factoid = '<div style="padding:57px 15px 0px 20px;">We update our products every other week and release major upgrades several times a year - absolutely free.</div>';
    } else if ( randomFact==1) {
        factoid = '<div style="padding:57px 15px 0px 20px;">Real, friendly people in our Atlanta office answer our sales and support lines - you will never be sent to a call center.</div>';
    } else if ( randomFact==2) {
        factoid = '<div style="padding:57px 15px 0px 20px;">We believe in the power of handwritten notes - expect some snail mail from us every now and then.</div>';
    } else if ( randomFact==3) {
        factoid = '<div style="padding:57px 15px 0px 20px;">We send out a monthly newsletter full of tips & tricks, valuable information, prize giveaways and much more.</div>';
    } else if ( randomFact==4) {
        factoid = '<div style="padding:57px 15px 0px 20px;">If you\'re ever in Atlanta, we will treat you to lunch.  If you\'re only here for a layover, we\'ll even bring it to you.</div>';
    } else if ( randomFact==5) {
        factoid = '<div style="padding:57px 15px 0px 20px;">We hold free training webinars four or five times each month, covering a wide spectrum of topics about our solutions.</div>';
    } else if ( randomFact==6) {
        factoid = '<div style="padding:57px 15px 0px 20px;">We don\'t require contracts - you won\'t ever be stuck in long-term agreements. We earn your business every single day.</div>';
    } else if ( randomFact==7) {
        factoid = '<div style="padding:57px 15px 0px 20px;">Every customer receives their own implementation team and a documented, phased setup process - we do the heavy lifting.</div>';
    } else if ( randomFact==8) {
        factoid = '<div style="padding:57px 15px 0px 20px;">We were founded in 1998 and were the first technology company built around the needs of small staffs.</div>';
    } else if ( randomFact==9) {
        factoid = '<div style="padding:57px 15px 0px 20px;">We work with organizations as small as 1 and as large as 10,000 members.';
    } else if ( randomFact==10) {
        factoid = '<div style="padding:57px 15px 0px 20px;">Most of our product features come from customer ideas - we have a whole forum where customers can submit and vote on features.</div>';
    } else {
        factoid = '<div style="padding:57px 15px 0px 20px;">We provide FREE phone and email support as well as host an online help community with FAQs, videos, an ideas forum and much more.</div>';
    }

    document.getElementById('factbox').innerHTML = factoid;
}
