



// Create arrays of articles
syndicate.article_title = new Array;
syndicate.article_url = new Array;
syndicate.article_date = new Array;
syndicate.article_summary = new Array;
syndicate.article_content = new Array;

// This section of the script is published by the software
syndicate.index = 0;
  syndicate.article_title[ syndicate.index ] = 'Flog the Blog';
  syndicate.article_url[ syndicate.index ] = 'http://www.randygage.com/artman/publish/article_193.shtml';
  syndicate.article_date[ syndicate.index ] = 'Jul 19, 2010';
  syndicate.article_summary[ syndicate.index ] = 'Okay I admit it. I\'m jealous.<br />\n<br />\nI\'m not a tech guy, but I still fantasize about being in a Silicon Valley start up, coming up with the next big thing that goes on to revolutionize the scene and then selling out to Google or Microsoft for a couple billion dollars.<br />\n<br />\nBut like I said I\'m not a techie. But that doesn\'t mean I don\'t follow what\'s going on and watching the scene. And something has developed that you may be interested in...';
  syndicate.index++;
  syndicate.article_title[ syndicate.index ] = 'Boiling the Frog in the Health Care Bog';
  syndicate.article_url[ syndicate.index ] = 'http://www.randygage.com/artman/publish/article_192.shtml';
  syndicate.article_date[ syndicate.index ] = 'Apr  1, 2010';
  syndicate.article_summary[ syndicate.index ] = 'If you wonder how to enact change in an electorate and introduce an expensive program that will end up costing the taxpayers trillions of dollars, it couldn\'t be done any better than the Obama administration did with the health care plan in the U.S. And it offers some tangible lessons in how governments can break the laws of prosperity and seemingly get away with it.';
  syndicate.index++;
  syndicate.article_title[ syndicate.index ] = 'Join the Discourse!';
  syndicate.article_url[ syndicate.index ] = 'http://www.randygage.com/artman/publish/article_191.shtml';
  syndicate.article_date[ syndicate.index ] = 'Mar 10, 2010';
  syndicate.article_summary[ syndicate.index ] = 'Wow what a week it has been on the Success Blog! First let me thank you guys for making the blog one of the top 3/10 of one percent in the world traffic-wise. And this last week the traffic has been over the moon. I think because the topics were really fascinating and you guys have posted some amazing insights and thoughts in the comments.';
  syndicate.index++;
  syndicate.article_title[ syndicate.index ] = 'An Important Message from the Air';
  syndicate.article_url[ syndicate.index ] = 'http://www.randygage.com/artman/publish/article_190.shtml';
  syndicate.article_date[ syndicate.index ] = 'Feb 17, 2010';
  syndicate.article_summary[ syndicate.index ] = 'I actually wrote and sent this note to you from an American Airlines flight 35,000 feet up. Don\'t you love technology? Of course the other side of that is that AA had a mechanical and that means I missed my connection and have to fly 1,000 miles out of my way and get home three hours late. Oh the glamorous life I lead...';
  syndicate.index++;
  syndicate.article_title[ syndicate.index ] = 'What Do You Think?';
  syndicate.article_url[ syndicate.index ] = 'http://www.randygage.com/artman/publish/article_189.shtml';
  syndicate.article_date[ syndicate.index ] = 'Jan 30, 2010';
  syndicate.article_summary[ syndicate.index ] = 'I\'m in Kuala Lumpur, Malaysia, on the last stop of another around the world tour. At dinner tonight, we stood up and mixed our "prosperity salad," a Malay custom for Chinese New Year.';
  syndicate.index++;







// Set defaults for arguments if user hasn't set them
if (syndicate.title_fontface == null)    { syndicate.title_fontface = 'Geneva, Arial, sans-serif'; }
if (syndicate.title_fontsize == null)    { syndicate.title_fontsize = '2'; }
if (syndicate.title_fontcolor == null)   { syndicate.title_fontcolor = '#003399'; }
if (syndicate.title_fontbold == null)    { syndicate.title_fontbold = true; }
if (syndicate.title_fontital == null)    { syndicate.title_fontital = false; }
if (syndicate.date_fontface == null)     { syndicate.date_fontface = 'Geneva, Arial, sans-serif'; }
if (syndicate.date_fontsize == null)     { syndicate.date_fontsize = '1'; }
if (syndicate.date_fontcolor == null)    { syndicate.date_fontcolor = '#6699cc'; }
if (syndicate.date_fontbold == null)     { syndicate.date_fontbold = false; }
if (syndicate.date_fontital == null)     { syndicate.date_fontital = false; }
if (syndicate.date_fontunder == null)    { syndicate.date_fontunder = false; }
if (syndicate.summary_fontface == null)  { syndicate.summary_fontface = 'Geneva, Arial, sans-serif'; }
if (syndicate.summary_fontsize == null)  { syndicate.summary_fontsize = '2'; }
if (syndicate.summary_fontcolor == null) { syndicate.summary_fontcolor = '#6699cc'; }
if (syndicate.summary_fontbold == null)  { syndicate.summary_fontbold = false; }
if (syndicate.summary_fontital == null)  { syndicate.summary_fontital = false; }
if (syndicate.summary_fontunder == null) { syndicate.summary_fontunder = false; }

if (syndicate.title_maxlength == null)   { syndicate.title_maxlength = 0; }
if (syndicate.summary_maxlength == null) { syndicate.summary_maxlength = 0; }

if (syndicate.bgcolor == null)           { syndicate.bgcolor = '#ffffff'; }
if (!syndicate.max_articles)             { syndicate.max_articles = syndicate.article_title.length; }  // !syndicate.max_articles catches null and zero
if (syndicate.display_date == null)      { syndicate.display_date = true; }
if (syndicate.display_summaries == null) { syndicate.display_summaries = true; }


// Don't allow user to display too many articles
if (syndicate.max_articles > syndicate.article_title.length) {
  syndicate.max_articles = syndicate.article_title.length;
}

/*
//Function to crop text on word boundaries
function crop_text(text, max_length) {

  // If the string is already small enough, return it unscathed
  if (text.length <= max_length) { return( text ); }

  // If the user has specified a length of 0, it means he wants the whole thing
  if (max_length == 0) { return( text ); }

  // Start looking for a space, leaving space for an elipsis on the end
  var test_length = (max_length - 3);
  if (test_length < 1) { return( '...' ); }   // max_length too small
  while (text.charAt(test_length) != ' ') {
    test_length--;

    // If we didn't find any spaces to break on, return the string broken at max_length
    if (test_length == 0) { return( text.substring(0, max_length - 3) + '...' ); }
  }

  return text.substring(0, test_length) + '...';
}
*/

// List our articles, stopping if the user doesn't want any more
for ( syndicate.index = 0; syndicate.index < syndicate.max_articles ; syndicate.index++ ) {

  /*syndicate.article_title[syndicate.index] = crop_text(syndicate.article_title[syndicate.index], syndicate.title_maxlength);
  syndicate.article_summary[syndicate.index] = crop_text(syndicate.article_summary[syndicate.index], syndicate.summary_maxlength);*/

  document.write('<tr><td bgcolor="' + syndicate.bgcolor + '">');
  document.write('<a href="' + syndicate.article_url[syndicate.index] + '" target="_blank">');
  if (syndicate.title_fontbold)  { document.write('<b>'); }
  if (syndicate.title_fontital)  { document.write('<i>'); }
  document.write('<font color="' + syndicate.title_fontcolor + '" face="' + syndicate.title_fontface + '" size="' + syndicate.title_fontsize + '"');
  if (syndicate.title_style)     { document.write(' style="' + syndicate.title_style + '"'); }
  document.write('>');
  document.write(syndicate.article_title[syndicate.index]);
  document.write('<br></font>');
  if (syndicate.title_fontital)  { document.write('</i>'); }
  if (syndicate.title_fontbold)  { document.write('</b>'); }
  document.write('</a>');

  if (syndicate.display_date) {
    if (syndicate.date_fontbold)  { document.write('<b>'); }
    if (syndicate.date_fontital)  { document.write('<i>'); }
    if (syndicate.date_fontunder) { document.write('<u>'); }
    document.write('<font color="' + syndicate.date_fontcolor + '" face="' + syndicate.date_fontface + '" size="' + syndicate.date_fontsize + '"');
    if (syndicate.date_style)     { document.write(' style="' + syndicate.date_style + '"'); }
    document.write('>');
    document.write(syndicate.article_date[syndicate.index]);
    document.write('<br></font>');
    if (syndicate.date_fontunder) { document.write('</u>'); }
    if (syndicate.date_fontital)  { document.write('</i>'); }
    if (syndicate.date_fontbold)  { document.write('</b>'); }
  }

  if (syndicate.display_summaries) {
    if (syndicate.summary_fontbold)  { document.write('<b>'); }
    if (syndicate.summary_fontital)  { document.write('<i>'); }
    if (syndicate.summary_fontunder) { document.write('<u>'); }
    document.write('<font color="' + syndicate.summary_fontcolor + '" face="' + syndicate.summary_fontface + '" size="' + syndicate.summary_fontsize + '"');
    if (syndicate.summary_style)     { document.write(' style="' + syndicate.summary_style + '"'); }
    document.write('>');
    document.write(syndicate.article_summary[syndicate.index]);
    document.write('<br></font>');
    if (syndicate.summary_fontunder) { document.write('</u>'); }
    if (syndicate.summary_fontital)  { document.write('</i>'); }
    if (syndicate.summary_fontbold)  { document.write('</b>'); }
  }

  document.write('<br></td></tr>\n');
}

// If you want your Webfeeds to be branded, uncomment the following lines.
// To do this, remove the // at the beginning of the next five lines:

//document.write('<tr><td bgcolor="' + syndicate.bgcolor + '">');
//document.write('<a href="#" target="_blank">');
//document.write('<font color="' + syndicate.title_fontcolor + '" face="Verdana, Arial, Helvetica, sans-serif" size="1">');
//document.write('<b>Powered by SITENAME.com</b></font></a>');
//document.write('<br><br></b></font></td></tr>\n');
