<!--
function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of random tips
random_text[number++] = "<b>Sell your house tax free.</b><br><br> You may be able to avoid paying taxes on $250,000 of capital gains when you sell your house, if you meet a few requirements. Married couples can exclude up to a half-million dollars..."
random_text[number++] = "<b>Save for your child’s education.</b><br><br>Save in a tax-advantaged way. Look at all the available options and choose what is likely to give you the most money for college at the least tax cost..."
random_text[number++] = "<b>Consider tax-exempt investments as a means of cutting your income tax.</b><br><br>If you're in the higher tax brackets and are seeing your investment profits taxed away, there is a good alternative to consider: tax-exempt mutual funds."
random_text[number++] = "<b>Don’t spend your pension distributions.</b><br><br>If you receive a lump-sum distribution from a qualified plan, consider deferring taxation on the distribution by rolling it into an IRA or another qualified plan within 60 days..."
random_text[number++] = "<b>Take a write-off for your small business.</b><br><br>Accurate record keeping is mandatory. Once you open your business and start generating revenues, you can write off many of those initial startup costs at tax time..."
 
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
-->