
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/mattkirkland/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;Nada Surf&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Treading Water&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;Radiohead&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Reckoner&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;Built To Spill&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Track 02&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;Sigur R&Atilde;&sup3;s&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Andvari&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;&lt;a href=\&quot;http://www.virb.com/vampireweekend\&quot;&gt;Vampire Weekend&lt;/a&gt;&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Boston&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 Helio Sequence&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Fall And Winter/Necktie Noose&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;&lt;a href=\&quot;http://www.virb.com/arcadefire\&quot;&gt;Arcade Fire&lt;/a&gt;&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Ocean of Noise&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;&lt;a href=\&quot;http://www.virb.com/greatnorthern\&quot;&gt;Great Northern&lt;/a&gt;&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Our Bleeding Hearts&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;Various Artists&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;The Undertones - My Perfect Cousin&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 Enemy&lt;/span&gt; - &lt;span class=\&quot;title\&quot;&gt;Away from here&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/mattkirkland/tunes/recent_plays\">see all</a></span></h3>\n<ul class=\"virb_tunes\">\n<li class=\"odd\"><span class=\"artist\">Nada Surf</span> - <span class=\"title\">Treading Water</span></li>\n\n<li class=\"even\"><span class=\"artist\">Radiohead</span> - <span class=\"title\">Reckoner</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Built To Spill</span> - <span class=\"title\">Track 02</span></li>\n\n<li class=\"even\"><span class=\"artist\">Sigur Rós</span> - <span class=\"title\">Andvari</span></li>\n\n<li class=\"odd\"><span class=\"artist\"><a href=\"http://www.virb.com/vampireweekend\">Vampire Weekend</a></span> - <span class=\"title\">Boston</span></li>\n\n<li class=\"even\"><span class=\"artist\">The Helio Sequence</span> - <span class=\"title\">Fall And Winter/Necktie Noose</span></li>\n\n<li class=\"odd\"><span class=\"artist\"><a href=\"http://www.virb.com/arcadefire\">Arcade Fire</a></span> - <span class=\"title\">Ocean of Noise</span></li>\n\n<li class=\"even\"><span class=\"artist\"><a href=\"http://www.virb.com/greatnorthern\">Great Northern</a></span> - <span class=\"title\">Our Bleeding Hearts</span></li>\n\n<li class=\"odd\"><span class=\"artist\">Various Artists</span> - <span class=\"title\">The Undertones - My Perfect Cousin</span></li>\n\n<li class=\"even\"><span class=\"artist\">The Enemy</span> - <span class=\"title\">Away from here</span></li>\n\n\n</ul>\n'); // done
