
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/jamief/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;Miocene&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Free Reign&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;Miocene&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Fits Like That&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;Little Angels&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Juvenile Offender&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;Little Angels&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;That\'s My Kinda Life&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;Little Angels&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Product of the Working Class&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/jamief/tunes/recent_plays\">see all</a></span></h3>\n<ul class=\"virb_tunes\">\n<li class=\"odd\"><span class=\"artist\">Miocene</span> - <span class=\"title\">Free Reign</span></li>\n\n<li class=\"even\"><span class=\"artist\">Miocene</span> - <span class=\"title\">Fits Like That</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Little Angels</span> - <span class=\"title\">Juvenile Offender</span></li>\n\n<li class=\"even\"><span class=\"artist\">Little Angels</span> - <span class=\"title\">That\'s My Kinda Life</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Little Angels</span> - <span class=\"title\">Product of the Working Class</span></li>\n\n\n</ul>\n'); // done
