
if (document.getElementById('htmlPreview') != null)
{
    var output = '&lt;br/&gt;&lt;h3&gt;Top 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/ttscoff/tunes/top_songs\&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;title\&quot;&gt;Something Precious (Dies)&lt;/span&gt; - &lt;span class=\&quot;artist\&quot;&gt;Brett Terpstra&lt;/span&gt; - &lt;span class=\&quot;song_count\&quot;&gt;13&lt;/span&gt;&lt;/li&gt;&lt;li class=\&quot;even\&quot;&gt;&lt;span class=\&quot;title\&quot;&gt;Black List&lt;/span&gt; - &lt;span class=\&quot;artist\&quot;&gt;Prefuse 73&lt;/span&gt; - &lt;span class=\&quot;song_count\&quot;&gt;7&lt;/span&gt;&lt;/li&gt;&lt;li class=\&quot;odd\&quot;&gt;&lt;span class=\&quot;title\&quot;&gt;DropkickMurphys / Hey Little Rich Boy (Sham 69)&lt;/span&gt; - &lt;span class=\&quot;artist\&quot;&gt;Various&lt;/span&gt; - &lt;span class=\&quot;song_count\&quot;&gt;7&lt;/span&gt;&lt;/li&gt;&lt;li class=\&quot;even\&quot;&gt;&lt;span class=\&quot;title\&quot;&gt;The Passenger&lt;/span&gt; - &lt;span class=\&quot;artist\&quot;&gt;Siouxsie &amp; the Banshees&lt;/span&gt; - &lt;span class=\&quot;song_count\&quot;&gt;7&lt;/span&gt;&lt;/li&gt;&lt;li class=\&quot;odd\&quot;&gt;&lt;span class=\&quot;title\&quot;&gt;Pour Me Another&lt;/span&gt; - &lt;span class=\&quot;artist\&quot;&gt;&lt;a href=\&quot;http://www.virb.com/atmosphere\&quot;&gt;Atmosphere&lt;/a&gt;&lt;/span&gt; - &lt;span class=\&quot;song_count\&quot;&gt;7&lt;/span&gt;&lt;/li&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>Top Songs (VirbTunes) <span class=\"h3_dash\">-</span> <span class=\"see_all\"><a href=\"http://www.virb.com/ttscoff/tunes/top_songs\">see all</a></span></h3>\n<ul class=\"virb_tunes\">\n<li class=\"odd\"><span class=\"title\">Something Precious (Dies)</span> - <span class=\"artist\">Brett Terpstra</span> - <span class=\"song_count\">13</span></li><li class=\"even\"><span class=\"title\">Black List</span> - <span class=\"artist\">Prefuse 73</span> - <span class=\"song_count\">7</span></li><li class=\"odd\"><span class=\"title\">DropkickMurphys / Hey Little Rich Boy (Sham 69)</span> - <span class=\"artist\">Various</span> - <span class=\"song_count\">7</span></li><li class=\"even\"><span class=\"title\">The Passenger</span> - <span class=\"artist\">Siouxsie & the Banshees</span> - <span class=\"song_count\">7</span></li><li class=\"odd\"><span class=\"title\">Pour Me Another</span> - <span class=\"artist\"><a href=\"http://www.virb.com/atmosphere\">Atmosphere</a></span> - <span class=\"song_count\">7</span></li></ul>\n'); // done
