
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/bronwyn/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;Elbow&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Friend of Ours&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/bronwyn/tunes/recent_plays\">see all</a></span></h3>\n<ul class=\"virb_tunes\">\n<li class=\"odd\"><span class=\"artist\">Elbow</span> - <span class=\"title\">Friend of Ours</span></li>\n\n\n</ul>\n'); // done
