
if (document.getElementById('htmlPreview') != null)
{
    var output = '&lt;br/&gt;&lt;h3&gt;Recent Songs (VirbTunes) &lt;span class=\&quot;h3_dash\&quot;&gt;-&lt;/span&gt; &lt;span class=\&quot;see_all\&quot;&gt;&lt;a href=\&quot;http://www.virb.com/n0s0ap/tunes/recent_plays\&quot;&gt;see all&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;br/&gt;&lt;ul class=\&quot;virb_tunes\&quot;&gt;&lt;br/&gt;&lt;li class=\&quot;odd\&quot;&gt;&lt;span class=\&quot;artist\&quot;&gt;Ukulele Tuner&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;GCEA-Tuner&lt;/span&gt;&lt;/li&gt;&lt;br/&gt;&lt;br/&gt;&lt;li class=\&quot;even\&quot;&gt;&lt;span class=\&quot;artist\&quot;&gt;The Fratellis&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Mistress Mabel&lt;/span&gt;&lt;/li&gt;&lt;br/&gt;&lt;br/&gt;&lt;li class=\&quot;odd\&quot;&gt;&lt;span class=\&quot;artist\&quot;&gt;The Aggrolites&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;07 - Death At Ten Paces&lt;/span&gt;&lt;/li&gt;&lt;br/&gt;&lt;br/&gt;&lt;li class=\&quot;even\&quot;&gt;&lt;span class=\&quot;artist\&quot;&gt;Flobots&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;03 One Love&lt;/span&gt;&lt;/li&gt;&lt;br/&gt;&lt;br/&gt;&lt;li class=\&quot;odd\&quot;&gt;&lt;span class=\&quot;artist\&quot;&gt;Chris and Nipper&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;UkeCast Nipper Interview&lt;/span&gt;&lt;/li&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;/ul&gt;&lt;br/&gt;'; 
    // Remove initial br
    var output = output.replace(/&lt;br\/&gt;/, '');
    // Replace all br entities with br tag
    document.getElementById('htmlPreview').innerHTML = output.replace(/&lt;br\/&gt;/g, '<br/>');
}


document.write('\n<h3>Recent Songs (VirbTunes) <span class=\"h3_dash\">-</span> <span class=\"see_all\"><a href=\"http://www.virb.com/n0s0ap/tunes/recent_plays\">see all</a></span></h3>\n<ul class=\"virb_tunes\">\n<li class=\"odd\"><span class=\"artist\">Ukulele Tuner</span> - <span class=\"title\">GCEA-Tuner</span></li>\n\n<li class=\"even\"><span class=\"artist\">The Fratellis</span> - <span class=\"title\">Mistress Mabel</span></li>\n\n<li class=\"odd\"><span class=\"artist\">The Aggrolites</span> - <span class=\"title\">07 - Death At Ten Paces</span></li>\n\n<li class=\"even\"><span class=\"artist\">Flobots</span> - <span class=\"title\">03 One Love</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Chris and Nipper</span> - <span class=\"title\">UkeCast Nipper Interview</span></li>\n\n\n</ul>\n'); // done
