
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/sdesocio/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;Jenny Scheinman&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Newspaper Angels&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 Whipsaws&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Jessi Jane&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;Ciam&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Over The Edge&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;Mr. Gnome&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Pirates&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;Love Psychedelico&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Standing Bird&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;Landon Pigg&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Falling In Love At a Coffee Shop&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;Tori Sparks&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Cold War&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;Robby Hecht&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Late Last Night&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;Ashleigh Flynn&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Mystery&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;Crazy Q&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Local Hero&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/sdesocio/tunes/recent_plays\">see all</a></span></h3>\n<ul class=\"virb_tunes\">\n<li class=\"odd\"><span class=\"artist\">Jenny Scheinman</span> - <span class=\"title\">Newspaper Angels</span></li>\n\n<li class=\"even\"><span class=\"artist\">The Whipsaws</span> - <span class=\"title\">Jessi Jane</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Ciam</span> - <span class=\"title\">Over The Edge</span></li>\n\n<li class=\"even\"><span class=\"artist\">Mr. Gnome</span> - <span class=\"title\">Pirates</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Love Psychedelico</span> - <span class=\"title\">Standing Bird</span></li>\n\n<li class=\"even\"><span class=\"artist\">Landon Pigg</span> - <span class=\"title\">Falling In Love At a Coffee Shop</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Tori Sparks</span> - <span class=\"title\">Cold War</span></li>\n\n<li class=\"even\"><span class=\"artist\">Robby Hecht</span> - <span class=\"title\">Late Last Night</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Ashleigh Flynn</span> - <span class=\"title\">Mystery</span></li>\n\n<li class=\"even\"><span class=\"artist\">Crazy Q</span> - <span class=\"title\">Local Hero</span></li>\n\n\n</ul>\n'); // done
