Regular Expressions 101

Save & Share

  • Regex Version: ver. 1
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
g

Test String

Code Generator

Generated Code

#include <StringConstants.au3> ; to declare the Constants of StringRegExp #include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate Local $sRegex = "http:\/\/([a-zA-Z0-9\-]+\.)+[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]+\/[a-zA-Z]+\.[a-zA-Z]+" Local $sString = "" & @CRLF & _ "<!DOCTYPE html>" & @CRLF & _ "<html lang="en">" & @CRLF & _ " <head>" & @CRLF & _ " <meta charset="utf-8">" & @CRLF & _ " <meta http-equiv="X-UA-Compatible" content="IE=edge">" & @CRLF & _ " <meta name="viewport" content="width=device-width, initial-scale=1">" & @CRLF & _ " <title>Dance Radio Stations</title>" & @CRLF & _ " <meta name="description" content="Listen to 670 Dance Radio Stations. Dance music is written and played with the sole intention to facilitate dancing (usually in a nightclub environment and mixed in sets by DJs). The vast majority of contemporary music considered as Dance is Electronic based. Dance music covers a large amount of different electronic genres.">" & @CRLF & _ " <meta name="keywords" content="Dance, Dance internet radio, Dance online radio, Dance free music, Dance radio stations, Dance online radio stations, Dance internet radio stations, Dance online music">" & @CRLF & _ " <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">" & @CRLF & _ " <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">" & @CRLF & _ " <link rel="stylesheet" href="/css/custom.css">" & @CRLF & _ " <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>" & @CRLF & _ " <script>" & @CRLF & _ " (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){" & @CRLF & _ " (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o)," & @CRLF & _ " m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)" & @CRLF & _ " })(window,document,'script','//www.google-analytics.com/analytics.js','ga');" & @CRLF & _ "" & @CRLF & _ " ga('create', 'UA-56971314-1', 'auto');" & @CRLF & _ " ga('require', 'displayfeatures');" & @CRLF & _ " ga('send', 'pageview');" & @CRLF & _ " </script>" & @CRLF & _ " <script type="text/javascript" src="/jPlayer/dist/jplayer/jquery.jplayer.min.js"></script>" & @CRLF & _ " <script type="text/javascript" src="/jPlayer/dist/jplayer/jquery.jplayer.min.js"></script>" & @CRLF & _ "<script type="text/javascript">" & @CRLF & _ "//<![CDATA[" & @CRLF & _ " $(document).ready(function(){" & @CRLF & _ " var stream1 = {" & @CRLF & _ " mp3: "http://stream.soundicradio.com/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_1").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream1);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume1').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume1').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream1).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream2 = {" & @CRLF & _ " mp3: "http://188.165.23.150:8510/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_2").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream2);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume2').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume2').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream2).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_2"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream3 = {" & @CRLF & _ " mp3: "http://198.50.197.80:9946/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_3").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream3);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume3').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume3').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream3).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_3"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream4 = {" & @CRLF & _ " mp3: "http://91.121.165.51:2210/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_4").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream4);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume4').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume4').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream4).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_4"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream5 = {" & @CRLF & _ " mp3: "http://198.27.65.17:9228/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_5").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream5);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume5').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume5').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream5).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_5"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream6 = {" & @CRLF & _ " mp3: "http://softrockradio.purestream.net:8004/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_6").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream6);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume6').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume6').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream6).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_6"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream7 = {" & @CRLF & _ " mp3: "http://46.163.124.61:8700/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_7").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream7);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume7').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume7').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream7).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_7"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream8 = {" & @CRLF & _ " mp3: "http://88.198.10.229:8061/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_8").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream8);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume8').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume8').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream8).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_8"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream9 = {" & @CRLF & _ " mp3: "http://mp3.radio-reeperbahn.de:80/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_9").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream9);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume9').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume9').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream9).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_9"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream10 = {" & @CRLF & _ " mp3: "http://maxxima.mine.nu:8000/;stream/1"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_10").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream10);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume10').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume10').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream10).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_10"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream11 = {" & @CRLF & _ " mp3: "http://188.165.202.221:8282/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_11").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream11);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume11').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume11').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream11).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_11"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream12 = {" & @CRLF & _ " mp3: "http://stream.pro-fm.net:8200/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_12").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream12);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume12').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume12').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream12).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_12"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream13 = {" & @CRLF & _ " mp3: "http://109.206.96.12:8000/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_13").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream13);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume13').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume13').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream13).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_13"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream14 = {" & @CRLF & _ " mp3: "http://dance.radiofunky.ro:7500/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_14").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream14);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume14').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume14').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream14).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_14"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream15 = {" & @CRLF & _ " mp3: "http://uplink.duplexfx.com:8072/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_15").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream15);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume15').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume15').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream15).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_15"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream16 = {" & @CRLF & _ " mp3: "http://193.243.169.34:9210/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_16").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream16);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume16').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume16').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream16).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_16"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream17 = {" & @CRLF & _ " mp3: "http://sc01.yertel.com:8094/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_17").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream17);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume17').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume17').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream17).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_17"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream18 = {" & @CRLF & _ " mp3: "http://emisie.radio69romania.ro:7500/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_18").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream18);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume18').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume18').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream18).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_18"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream19 = {" & @CRLF & _ " mp3: "http://109.206.96.34:8110/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_19").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream19);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume19').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume19').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream19).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "mp3"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_19"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ " var stream20 = {" & @CRLF & _ " m4a: "http://205.164.35.27:80/;"" & @CRLF & _ " }," & @CRLF & _ " ready = false;" & @CRLF & _ "" & @CRLF & _ " $("#jquery_jplayer_20").jPlayer({" & @CRLF & _ " ready: function (event) {" & @CRLF & _ " ready = true;" & @CRLF & _ " $(this).jPlayer("setMedia", stream20);" & @CRLF & _ " }," & @CRLF & _ " play: function() {" & @CRLF & _ " $(this).jPlayer("pauseOthers", 0);" & @CRLF & _ " $('#volume20').css('visibility','visible');" & @CRLF & _ " }," & @CRLF & _ " pause: function() {" & @CRLF & _ " $(this).jPlayer("clearMedia");" & @CRLF & _ " $('#volume20').css('visibility','hidden');" & @CRLF & _ " }," & @CRLF & _ " error: function(event) {" & @CRLF & _ " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {" & @CRLF & _ " $(this).jPlayer("setMedia", stream20).jPlayer("play");" & @CRLF & _ " }" & @CRLF & _ " }," & @CRLF & _ " swfPath: "/jPlayer/dist/jplayer"," & @CRLF & _ " supplied: "m4a"," & @CRLF & _ " cssSelectorAncestor: "#jp_container_20"," & @CRLF & _ " preload: "none"," & @CRLF & _ " globalVolume: "true"" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ "});" & @CRLF & _ "//]]>" & @CRLF & _ "</script>" & @CRLF & _ "" & @CRLF & _ " " & @CRLF & _ " </head>" & @CRLF & _ " <body>" & @CRLF & _ " " & @CRLF & _ " <nav class="navbar navbar-default navbar-fixed-top" role="navigation">" & @CRLF & _ " <div class="container-fluid">" & @CRLF & _ " <!-- Brand and toggle get grouped for better mobile display -->" & @CRLF & _ " <div class="navbar-header">" & @CRLF & _ " <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">" & @CRLF & _ " <span class="sr-only">Toggle navigation</span>" & @CRLF & _ " <span class="icon-bar"></span>" & @CRLF & _ " <span class="icon-bar"></span>" & @CRLF & _ " <span class="icon-bar"></span>" & @CRLF & _ " </button>" & @CRLF & _ " <a class="navbar-brand" href="/">" & @CRLF & _ " <img style="display:inline-block" alt="Brand" src="/images/internet-radio-icon_20x20.png" height="20">" & @CRLF & _ " <span style="color: #000;">Internet</span><span style="color: #c00;">Radio</span>" & @CRLF & _ " </a>" & @CRLF & _ "" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " <!-- Collect the nav links, forms, and other content for toggling -->" & @CRLF & _ " <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">" & @CRLF & _ " <ul class="nav navbar-nav">" & @CRLF & _ " <li class="dropdown active">" & @CRLF & _ " <a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">" & @CRLF & _ " Listen <span class="caret"></span>" & @CRLF & _ " </a>" & @CRLF & _ " <ul class="dropdown-menu" role="menu">" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', '70s');" href="/stations/70s/">70s</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', '80s');" href="/stations/80s/">80s</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'ambient');" href="/stations/ambient/">Ambient</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'blues');" href="/stations/blues/">Blues</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'chillout');" href="/stations/chillout/">Chillout</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'classical');" href="/stations/classical/">Classical</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'country');" href="/stations/country/">Country</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'dance');" href="/stations/dance/">Dance</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'drum and bass');" href="/stations/drum and bass/">Drum and bass</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'easy listening');" href="/stations/easy listening/">Easy listening</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'heavy metal');" href="/stations/heavy metal/">Heavy metal</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'hip hop');" href="/stations/hip hop/">Hip hop</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'jazz');" href="/stations/jazz/">Jazz</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'meditation');" href="/stations/meditation/">Meditation</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'metal');" href="/stations/metal/">Metal</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'oldies');" href="/stations/oldies/">Oldies</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'psytrance');" href="/stations/psytrance/">Psytrance</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'reggae');" href="/stations/reggae/">Reggae</a></li>" & @CRLF & _ " <li><a onClick="ga('send', 'event', 'genreclick', 'navbar', 'rock');" href="/stations/rock/">Rock</a></li>" & @CRLF & _ " <li class="divider"></li><li><a href="/stations/">More Genres</a></li>" & @CRLF & _ "" & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ "" & @CRLF & _ " <li class="dropdown">" & @CRLF & _ " <a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">" & @CRLF & _ " Broadcast <span class="caret"></span>" & @CRLF & _ " </a>" & @CRLF & _ " <ul class="dropdown-menu" role="menu">" & @CRLF & _ " <li><a href="/servers/">Start your own station</a></li>" & @CRLF & _ " <li><a href="/servers/prices/">Prices</a></li>" & @CRLF & _ " <li class="divider"></li>" & @CRLF & _ " <li><a href="/community/forums/guides.12/">Guides</a></li>" & @CRLF & _ " <li><a href="/community/forums/faq.9/">FAQs</a></li>" & @CRLF & _ " <li class="divider"></li>" & @CRLF & _ " <li><a href="https://control.internet-radio.com:2199/" target="_blank">Control Panel Login</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ "" & @CRLF & _ " <li class="dropdown">" & @CRLF & _ " <a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">" & @CRLF & _ " Discuss <span class="caret"></span>" & @CRLF & _ " </a>" & @CRLF & _ " <ul class="dropdown-menu" role="menu">" & @CRLF & _ " <li><a href="/community/">Forum Home</a></li>" & @CRLF & _ " <li><a href="/contact/">Contact Us</a></li>" & @CRLF & _ " <li class="divider"></li>" & @CRLF & _ " <li><a href="/community/forums/support.2/">Support</a></li>" & @CRLF & _ " <li><a href="/community/forums/faq.9/">FAQs</a></li>" & @CRLF & _ " <li><a href="/community/forums/guides.12/">Guides</a></li>" & @CRLF & _ " <li><a href="/community/forums/pre-sales-questions.5/">Pre Sales Questions</a></li>" & @CRLF & _ " <li class="divider"></li>" & @CRLF & _ " <li><a href="/community/forums/volunteering.14/">Volunteering</a></li>" & @CRLF & _ " <li><a href="/community/forums/shows.17/">Shows</a></li>" & @CRLF & _ " <li><a href="/community/forums/music.18/">Music</a></li>" & @CRLF & _ " <li class="divider"></li>" & @CRLF & _ " <li><a href="/community/forums/chat.10/">Chat</a></li>" & @CRLF & _ " <li><a href="/community/forums/news.7/">News</a></li>" & @CRLF & _ " <li><a href="/community/forums/feedback.8/">Feedback</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </ul>" & @CRLF & _ "" & @CRLF & _ " <form class="navbar-form navbar-right" role="search" name="search" method="get" action="/search/">" & @CRLF & _ " <div class="form-group">" & @CRLF & _ " <input type="text" name="radio" class="form-control" placeholder="Search">" & @CRLF & _ " </div>" & @CRLF & _ " <button type="submit" class="btn btn-default">Search</button>" & @CRLF & _ " </form>" & @CRLF & _ " </div><!-- /.navbar-collapse -->" & @CRLF & _ " </div><!-- /.container-fluid -->" & @CRLF & _ " </nav>" & @CRLF & _ "" & @CRLF & _ " <!-- Begin page content -->" & @CRLF & _ " " & @CRLF & _ " <div class="container">" & @CRLF & _ " <div class="row">" & @CRLF & _ " <div class="col-md-7">" & @CRLF & _ " <h1>Dance Radio Stations</h1>" & @CRLF & _ " <p class="lead">We have 670 radio stations playing <b>Dance</b>.</p>" & @CRLF & _ " <table class="table table-striped">" & @CRLF & _ " <tbody>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_1" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_1" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://stream.soundicradio.com/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume1" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Soundic Radio</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Rita Ora - I Will Never Let You Down </b><br>" & @CRLF & _ " " & @CRLF & _ " <br>Genres: dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');" href="/stations/top 40/">top 40</a><!--" & @CRLF & _ " <br><samp>1 http://stream.soundicradio.com/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_1"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 78 Listeners<br>" & @CRLF & _ " <i style="font-size: 20px;" class="mdi-av-high-quality"></i> 192 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://stream.soundicradio.com/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://stream.soundicradio.com/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://stream.soundicradio.com/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://stream.soundicradio.com/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://stream.soundicradio.com/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://stream.soundicradio.com/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://stream.soundicradio.com/listen.pls&amp;title=Soundic Radio&amp;website=www.soundicradio.com','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://stream.soundicradio.com/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_2" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_2" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://188.165.23.150:8510/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume2" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">>>> POLSKASTACJA .PL >>> - PARTY (Polskie Radio)</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Reel 2 Real & Mad Stuntman - I Like To Move It</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.polskastacja.pl');" class="small text-success" href="http://www.polskastacja.pl" target="_blank">http://www.polskastacja.pl</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: polskie polska eurodance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'disco');" href="/stations/disco/">disco</a> dance<!--" & @CRLF & _ " <br><samp>2 http://188.165.23.150:8510/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_2"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 77 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://188.165.23.150:8510/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://188.165.23.150:8510/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://188.165.23.150:8510/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://188.165.23.150:8510/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://188.165.23.150:8510/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://188.165.23.150:8510/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://188.165.23.150:8510/listen.pls&amp;title=>>> POLSKASTACJA .PL >>> - PARTY (Polskie Radio)&amp;website=http://www.polskastacja.pl','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://188.165.23.150:8510/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_3" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_3" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://198.50.197.80:9946/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume3" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">RADIOLF HD AUDIO- VISITE WWW.RADIOLF.COM.BR- E ESCOLHA SEU PLAYER!</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Capital Inicial Independencia Acustico</b><br>" & @CRLF & _ " " & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> dance eletronicas mix<!--" & @CRLF & _ " <br><samp>3 http://198.50.197.80:9946/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_3"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 74 Listeners<br>" & @CRLF & _ " 96 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://198.50.197.80:9946/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://198.50.197.80:9946/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://198.50.197.80:9946/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://198.50.197.80:9946/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://198.50.197.80:9946/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://198.50.197.80:9946/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://198.50.197.80:9946/listen.pls&amp;title=RADIOLF HD AUDIO- VISITE WWW.RADIOLF.COM.BR- E ESCOLHA SEU PLAYER!&amp;website=www.radiolf.com.br','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://198.50.197.80:9946/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_4" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_4" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://91.121.165.51:2210/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume4" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">>>> POLSKASTACJA .PL >>> - Dance 100 (Polskie Radio)</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Tiesto & Kshmr Feat Vassy - Secrets</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.polskastacja.pl');" class="small text-success" href="http://www.polskastacja.pl" target="_blank">http://www.polskastacja.pl</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance<!--" & @CRLF & _ " <br><samp>4 http://91.121.165.51:2210/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_4"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 74 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://91.121.165.51:2210/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://91.121.165.51:2210/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://91.121.165.51:2210/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://91.121.165.51:2210/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://91.121.165.51:2210/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://91.121.165.51:2210/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://91.121.165.51:2210/listen.pls&amp;title=>>> POLSKASTACJA .PL >>> - Dance 100 (Polskie Radio)&amp;website=http://www.polskastacja.pl','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://91.121.165.51:2210/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_5" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_5" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://198.27.65.17:9228/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume5" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Fiesta Latina HD Radio</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>La Sonora Dinamita - Evidencias RMX</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.lafiestahd.com');" class="small text-success" href="http://www.lafiestahd.com" target="_blank">http://www.lafiestahd.com</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'salsa');" href="/stations/salsa/">salsa</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'merengue');" href="/stations/merengue/">merengue</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'cumbia');" href="/stations/cumbia/">cumbia</a> bachata <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'reggaeton');" href="/stations/reggaeton/">reggaeton</a> dance rancheras tropical rancheras<!--" & @CRLF & _ " <br><samp>5 http://198.27.65.17:9228/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_5"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 73 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://198.27.65.17:9228/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://198.27.65.17:9228/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://198.27.65.17:9228/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://198.27.65.17:9228/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://198.27.65.17:9228/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://198.27.65.17:9228/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://198.27.65.17:9228/listen.pls&amp;title=Fiesta Latina HD Radio&amp;website=http://www.lafiestahd.com','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://198.27.65.17:9228/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_6" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_6" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://softrockradio.purestream.net:8004/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume6" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Nexus Radio Dance</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>JES - Hold On ft. Shant & Clint Maximus (Radio Mix) </b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://nexusradio.fm/dance');" class="small text-success" href="http://nexusradio.fm/dance" target="_blank">http://nexusradio.fm/dance</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'house');" href="/stations/house/">house</a><!--" & @CRLF & _ " <br><samp>6 http://softrockradio.purestream.net:8004/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_6"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 70 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://softrockradio.purestream.net:8004/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://softrockradio.purestream.net:8004/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://softrockradio.purestream.net:8004/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://softrockradio.purestream.net:8004/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://softrockradio.purestream.net:8004/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://softrockradio.purestream.net:8004/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://softrockradio.purestream.net:8004/listen.pls&amp;title=Nexus Radio Dance&amp;website=http://nexusradio.fm/dance','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://softrockradio.purestream.net:8004/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_7" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_7" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://46.163.124.61:8700/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume7" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">BeGay.FM | Macht mich an</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Joe Budden - She Dont Put It Down (feat. Fabolous, Twista, Tank) [Remix]</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.begay.fm');" class="small text-success" href="http://www.begay.fm" target="_blank">http://www.begay.fm</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');" href="/stations/top 40/">top 40</a> dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'house');" href="/stations/house/">house</a> club charts<!--" & @CRLF & _ " <br><samp>7 http://46.163.124.61:8700/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_7"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 67 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://46.163.124.61:8700/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://46.163.124.61:8700/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://46.163.124.61:8700/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://46.163.124.61:8700/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://46.163.124.61:8700/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://46.163.124.61:8700/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://46.163.124.61:8700/listen.pls&amp;title=BeGay.FM | Macht mich an&amp;website=http://www.begay.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://46.163.124.61:8700/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_8" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_8" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://88.198.10.229:8061/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume8" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Dance Hit Radio - 8 Tracks Disco</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Hot Chocolate - Everyones A Winner (Opt320)</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://dancehitradio.dance');" class="small text-success" href="http://dancehitradio.dance" target="_blank">http://dancehitradio.dance</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'disco');" href="/stations/disco/">disco</a> classic dance retro <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', '70s');" href="/stations/70s/">70s</a><!--" & @CRLF & _ " <br><samp>8 http://88.198.10.229:8061/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_8"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 66 Listeners<br>" & @CRLF & _ " <i style="font-size: 20px;" class="mdi-av-high-quality"></i> 320 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://88.198.10.229:8061/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://88.198.10.229:8061/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://88.198.10.229:8061/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://88.198.10.229:8061/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://88.198.10.229:8061/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://88.198.10.229:8061/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://88.198.10.229:8061/listen.pls&amp;title=Dance Hit Radio - 8 Tracks Disco&amp;website=http://dancehitradio.dance','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://88.198.10.229:8061/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_9" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_9" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://mp3.radio-reeperbahn.de:80/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume9" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">RADIO Reeperbahn</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Crystal Waters - Gypsy Woman (1991)</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.radio-reeperbahn.de');" class="small text-success" href="http://www.radio-reeperbahn.de" target="_blank">http://www.radio-reeperbahn.de</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');" href="/stations/top 40/">top 40</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'rock');" href="/stations/rock/">rock</a> dance charts<!--" & @CRLF & _ " <br><samp>9 http://mp3.radio-reeperbahn.de:80/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_9"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 63 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://mp3.radio-reeperbahn.de:80/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://mp3.radio-reeperbahn.de:80/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://mp3.radio-reeperbahn.de:80/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;title=RADIO Reeperbahn&amp;website=http://www.radio-reeperbahn.de','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://mp3.radio-reeperbahn.de:80/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_10" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_10" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume10" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;"><a href="/station/maxxima/">Maxxima</a></h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>DIRTY SOUTH - WITH YOU (NUMAN PAUL REMIX)</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.maxxima.org');" class="small text-success" href="http://www.maxxima.org" target="_blank">http://www.maxxima.org</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance<!--" & @CRLF & _ " <br><samp>10 http://maxxima.mine.nu:8000/listen.pls?sid=1 shoutcast2 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_10"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 62 Listeners<br>" & @CRLF & _ " <i style="font-size: 20px;" class="mdi-av-high-quality"></i> 192 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');" href="/servers/tools/playlistgenerator/?u=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');" href="/servers/tools/playlistgenerator/?u=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');" href="/servers/tools/playlistgenerator/?u=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;title=Maxxima&amp;website=http://www.maxxima.org','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_11" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_11" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://188.165.202.221:8282/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume11" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Radio Crik Crok</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>ROBIN SCHULZ FEAT. FRANCESCO YATES - SUGAR</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.radiocrikcrok.it');" class="small text-success" href="http://www.radiocrikcrok.it" target="_blank">http://www.radiocrikcrok.it</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');" href="/stations/top 40/">top 40</a><!--" & @CRLF & _ " <br><samp>11 http://188.165.202.221:8282/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_11"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 60 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://188.165.202.221:8282/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://188.165.202.221:8282/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://188.165.202.221:8282/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://188.165.202.221:8282/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://188.165.202.221:8282/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://188.165.202.221:8282/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://188.165.202.221:8282/listen.pls&amp;title=Radio Crik Crok&amp;website=http://www.radiocrikcrok.it','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://188.165.202.221:8282/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_12" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_12" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://stream.pro-fm.net:8200/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume12" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Pro FM Danceclassics & Dancehits 24/7 Nonstop Danceradio</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>MIXGESELLE - Weekend Warm Up Show - Previous: ROBERT HOWARD / KYM MAZELLE - WAIT</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.profm.nl');" class="small text-success" href="http://www.profm.nl" target="_blank">http://www.profm.nl</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance<!--" & @CRLF & _ " <br><samp>12 http://stream.pro-fm.net:8200/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_12"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 60 Listeners<br>" & @CRLF & _ " <i style="font-size: 20px;" class="mdi-av-high-quality"></i> 256 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://stream.pro-fm.net:8200/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://stream.pro-fm.net:8200/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://stream.pro-fm.net:8200/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://stream.pro-fm.net:8200/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://stream.pro-fm.net:8200/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://stream.pro-fm.net:8200/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://stream.pro-fm.net:8200/listen.pls&amp;title=Pro FM Danceclassics & Dancehits 24/7 Nonstop Danceradio&amp;website=http://www.profm.nl','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://stream.pro-fm.net:8200/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_13" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_13" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://109.206.96.12:8000/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume13" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">TOP FM Beograd 106,8 128K</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b></b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.topfm.rs');" class="small text-success" href="http://www.topfm.rs" target="_blank">http://www.topfm.rs</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'house');" href="/stations/house/">house</a><!--" & @CRLF & _ " <br><samp>13 http://109.206.96.12:8000/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_13"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 58 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://109.206.96.12:8000/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://109.206.96.12:8000/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://109.206.96.12:8000/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://109.206.96.12:8000/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://109.206.96.12:8000/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://109.206.96.12:8000/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://109.206.96.12:8000/listen.pls&amp;title=TOP FM Beograd 106,8 128K&amp;website=http://www.topfm.rs','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://109.206.96.12:8000/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_14" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_14" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://dance.radiofunky.ro:7500/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume14" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Radio FUNKY Dance Romania - wWw.RadioFunky.Ro - Powered By F U N K Y - Media</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Broadcast Live from Mamaia</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://RadioFunky.Ro');" class="small text-success" href="http://RadioFunky.Ro" target="_blank">http://RadioFunky.Ro</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'house');" href="/stations/house/">house</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'electro');" href="/stations/electro/">electro</a> tehno comercial <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'romania');" href="/stations/romania/">romania</a><!--" & @CRLF & _ " <br><samp>14 http://dance.radiofunky.ro:7500/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_14"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 57 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://dance.radiofunky.ro:7500/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://dance.radiofunky.ro:7500/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://dance.radiofunky.ro:7500/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://dance.radiofunky.ro:7500/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://dance.radiofunky.ro:7500/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://dance.radiofunky.ro:7500/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://dance.radiofunky.ro:7500/listen.pls&amp;title=Radio FUNKY Dance Romania - wWw.RadioFunky.Ro - Powered By F U N K Y - Media&amp;website=http://RadioFunky.Ro','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://dance.radiofunky.ro:7500/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_15" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_15" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://uplink.duplexfx.com:8072/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume15" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">181.FM Studio 181 (First Generation of Dance)</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Dan Hartman f/Loletta Holloway - Vertigo/Relight My Fire</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.181.fm');" class="small text-success" href="http://www.181.fm" target="_blank">http://www.181.fm</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'disco');" href="/stations/disco/">disco</a><!--" & @CRLF & _ " <br><samp>15 http://uplink.duplexfx.com:8072/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_15"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 56 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://uplink.duplexfx.com:8072/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://uplink.duplexfx.com:8072/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://uplink.duplexfx.com:8072/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://uplink.duplexfx.com:8072/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://uplink.duplexfx.com:8072/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://uplink.duplexfx.com:8072/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://uplink.duplexfx.com:8072/listen.pls&amp;title=181.FM Studio 181 (First Generation of Dance)&amp;website=http://www.181.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://uplink.duplexfx.com:8072/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_16" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_16" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://193.243.169.34:9210/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume16" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Radio 3 - Belgrade - www.radio3.rs</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Spandau Ballet - Gold</b><br>" & @CRLF & _ " " & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> dance<!--" & @CRLF & _ " <br><samp>16 http://193.243.169.34:9210/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_16"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 55 Listeners<br>" & @CRLF & _ " 64 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://193.243.169.34:9210/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://193.243.169.34:9210/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://193.243.169.34:9210/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://193.243.169.34:9210/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://193.243.169.34:9210/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://193.243.169.34:9210/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://193.243.169.34:9210/listen.pls&amp;title=Radio 3 - Belgrade - www.radio3.rs&amp;website=www.radio3.rs','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://193.243.169.34:9210/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_17" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_17" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://sc01.yertel.com:8094/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume17" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Energynet FM</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Jamiroquai - Little L (Boris Dlugosch Radio Mix)</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://energynet.fm');" class="small text-success" href="http://energynet.fm" target="_blank">http://energynet.fm</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'pop');" href="/stations/pop/">pop</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'house');" href="/stations/house/">house</a><!--" & @CRLF & _ " <br><samp>17 http://sc01.yertel.com:8094/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_17"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 53 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://sc01.yertel.com:8094/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://sc01.yertel.com:8094/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://sc01.yertel.com:8094/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://sc01.yertel.com:8094/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://sc01.yertel.com:8094/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://sc01.yertel.com:8094/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://sc01.yertel.com:8094/listen.pls&amp;title=Energynet FM&amp;website=http://energynet.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://sc01.yertel.com:8094/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_18" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_18" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://emisie.radio69romania.ro:7500/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume18" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">Radio69Romania</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>10 Florin Salam Romeo Fantastik - Sunt pitbullu tau by Scorpyo edit</b><br>" & @CRLF & _ " " & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'manele');" href="/stations/manele/">manele</a> dance petrecere <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');" href="/stations/top 40/">top 40</a><!--" & @CRLF & _ " <br><samp>18 http://emisie.radio69romania.ro:7500/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_18"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 53 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://emisie.radio69romania.ro:7500/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://emisie.radio69romania.ro:7500/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://emisie.radio69romania.ro:7500/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://emisie.radio69romania.ro:7500/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://emisie.radio69romania.ro:7500/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://emisie.radio69romania.ro:7500/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://emisie.radio69romania.ro:7500/listen.pls&amp;title=Radio69Romania&amp;website=www.radio69romania.ro','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://emisie.radio69romania.ro:7500/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_19" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_19" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://109.206.96.34:8110/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume19" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">NAXI DANCE RADIO by KBC NET (NAXI,Belgrade,Serbia, NAXI,Beograd,Srbija) - 128k</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b> 3lau Feat. Emma Hewitt - Alive Again (Extended Mix)</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.naxi.rs');" class="small text-success" href="http://www.naxi.rs" target="_blank">http://www.naxi.rs</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: dance <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'house');" href="/stations/house/">house</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'rnb');" href="/stations/rnb/">rnb</a><!--" & @CRLF & _ " <br><samp>19 http://109.206.96.34:8110/listen.pls shoutcast1 audio/mpeg</samp>" & @CRLF & _ " <div id="jplayer_inspector_19"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 53 Listeners<br>" & @CRLF & _ " 128 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://109.206.96.34:8110/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://109.206.96.34:8110/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://109.206.96.34:8110/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://109.206.96.34:8110/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://109.206.96.34:8110/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://109.206.96.34:8110/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://109.206.96.34:8110/listen.pls&amp;title=NAXI DANCE RADIO by KBC NET (NAXI,Belgrade,Serbia, NAXI,Beograd,Srbija) - 128k&amp;website=http://www.naxi.rs','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://109.206.96.34:8110/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td width="74">" & @CRLF & _ " <div id="jquery_jplayer_20" class="jp-jplayer"></div>" & @CRLF & _ " <div id="jp_container_20" class="jp-audio-stream" role="application" aria-label="media player">" & @CRLF & _ " <div class="jp-type-single">" & @CRLF & _ " <div class="jp-gui jp-interface">" & @CRLF & _ " <div class="jp-controls">" & @CRLF & _ " <i onClick="ga('send', 'event', 'tunein', 'playjp', 'http://205.164.35.27:80/listen.pls');" style="font-size: 60px;" class="jp-play text-danger mdi-av-play-circle-outline"></i>" & @CRLF & _ " <i style="font-size: 60px; display: none;" class="jp-pause text-danger mdi-av-pause-circle-outline"></i>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div id="volume20" class="text-center" style="visibility: hidden;">" & @CRLF & _ " <span class="jp-current-time"></span>" & @CRLF & _ " <div class="jp-volume-bar progress" style="margin:0;">" & @CRLF & _ " <div class="jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " <td>" & @CRLF & _ " <h4 class="text-danger" style="display: inline;">1.FM - CLUB ONE RADIO</h4>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Frankox Radioshow - #19</b><br>" & @CRLF & _ " <a onClick="ga('send', 'event', 'externallink', 'listing', 'http://www.1.fm');" class="small text-success" href="http://www.1.fm" target="_blank">http://www.1.fm</a>" & @CRLF & _ "" & @CRLF & _ " <br>Genres: <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'house');" href="/stations/house/">house</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'techno');" href="/stations/techno/">techno</a> <a onClick="ga('send', 'event', 'genreclick', 'stationlisting', 'electro');" href="/stations/electro/">electro</a> dance<!--" & @CRLF & _ " <br><samp>20 http://205.164.35.27:80/listen.pls shoutcast1 audio/aacp</samp>" & @CRLF & _ " <div id="jplayer_inspector_20"></div>-->" & @CRLF & _ " </td>" & @CRLF & _ " <td width="120" class="text-right hidden-xs">" & @CRLF & _ " <p>" & @CRLF & _ " 53 Listeners<br>" & @CRLF & _ " 64 Kbps<br>" & @CRLF & _ " </p>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playpls', 'http://205.164.35.27:80/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://205.164.35.27:80/listen.pls&amp;t=.pls">PLS</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playm3u', 'http://205.164.35.27:80/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://205.164.35.27:80/listen.pls&amp;t=.m3u">M3U</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="ga('send', 'event', 'tunein', 'playram', 'http://205.164.35.27:80/listen.pls');" href="/servers/tools/playlistgenerator/?u=http://205.164.35.27:80/listen.pls&amp;t=.ram">RAM</a>" & @CRLF & _ " <a style="margin:1px" class="btn btn-default btn-xs" onClick="window.open('/player/?mount=http://205.164.35.27:80/listen.pls&amp;title=1.FM - CLUB ONE RADIO&amp;website=http://www.1.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://205.164.35.27:80/listen.pls');" href="#">FLA</a>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ "" & @CRLF & _ " </tbody>" & @CRLF & _ " </table>" & @CRLF & _ " <div class="text-center">" & @CRLF & _ " <nav>" & @CRLF & _ "<ul class="pagination"><li><a href="/stations/dance/page3"><span aria-hidden="true">&laquo;</span><span class="sr-only">Previous</span></a></li><li><a href="/stations/dance/">1</a></li><li><a href="/stations/dance/page2">2</a></li><li><a href="/stations/dance/page3">3</a></li><li class="active"><a href="#">4 <span class="sr-only">(current)</span></a></li><li><a href="/stations/dance/page5">5</a></li><li><a href="/stations/dance/page6">6</a></li><li><a href="/stations/dance/page7">7</a></li><li><a href="/stations/dance/page8">8</a></li><li><a href="/stations/dance/page9">9</a></li><li class="disabled"><a>...</a></li><li><a href="/stations/dance/page33">33</a></li><li><a href="/stations/dance/page34">34</a></li><li class="next"><a href="/stations/dance/page5"><span aria-hidden="true">&raquo;</span><span class="sr-only">Next</span></a></li></ul>" & @CRLF & _ "</nav>" & @CRLF & _ "" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="col-md-5">" & @CRLF & _ " <div class="panel panel-default">" & @CRLF & _ " <div class="panel-heading">" & @CRLF & _ " <h2 class="panel-title"><i class="mdi-action-description"></i> About Dance Music</h2>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel-body">" & @CRLF & _ " <p class="lead">Dance music is written and played with the sole intention to facilitate dancing (usually in a nightclub environment and mixed in sets by djs). The vast majority of contemporary music considered as dance is <a onClick="ga('send', 'event', 'genreclick', 'description', 'electronic');" href="/stations/electronic/">electronic</a> based. Dance music covers a large amount of different <a onClick="ga('send', 'event', 'genreclick', 'description', 'electronic');" href="/stations/electronic/">electronic</a> genres.</p>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel panel-default">" & @CRLF & _ " <div class="panel-heading">" & @CRLF & _ " <h3 class="panel-title"><i class="mdi-social-share"></i> Share This Page</h3>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel-body text-center">" & @CRLF & _ " <div class="addthis_sharing_toolbox"></div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel panel-default">" & @CRLF & _ " <div class="panel-heading">" & @CRLF & _ " <h3 class="panel-title"><i class="mdi-social-whatshot"></i> Popular Genres</h3>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel-body text-capitalize text-center">" & @CRLF & _ " <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'top 40');" style="margin: 4px;" class="btn btn-default text-capitalize btn-lg" href="/stations/top 40/">top 40</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'rock');" style="margin: 4px;" class="btn btn-default text-capitalize btn-lg" href="/stations/rock/">rock</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'country');" style="margin: 4px;" class="btn btn-default text-capitalize btn-lg" href="/stations/country/">country</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'easy listening');" style="margin: 4px;" class="btn btn-default text-capitalize btn-lg" href="/stations/easy listening/">easy listening</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'jazz');" style="margin: 4px;" class="btn btn-default text-capitalize btn-lg" href="/stations/jazz/">jazz</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'blues');" style="margin: 4px;" class="btn btn-default text-capitalize btn-md" href="/stations/blues/">blues</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'classical');" style="margin: 4px;" class="btn btn-default text-capitalize btn-md" href="/stations/classical/">classical</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', '80s');" style="margin: 4px;" class="btn btn-default text-capitalize btn-md" href="/stations/80s/">80s</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'chillout');" style="margin: 4px;" class="btn btn-default text-capitalize btn-md" href="/stations/chillout/">chillout</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'ambient');" style="margin: 4px;" class="btn btn-default text-capitalize btn-md" href="/stations/ambient/">ambient</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'oldies');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/oldies/">oldies</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'reggae');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/reggae/">reggae</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'dance');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/dance/">dance</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', '70s');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/70s/">70s</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'drum and bass');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/drum and bass/">drum and bass</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'hip hop');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/hip hop/">hip hop</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'metal');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/metal/">metal</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'lounge');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/lounge/">lounge</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'meditation');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/meditation/">meditation</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'heavy metal');" style="margin: 4px;" class="btn btn-default text-capitalize btn-sm" href="/stations/heavy metal/">heavy metal</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'smooth jazz');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/smooth jazz/">smooth jazz</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'psytrance');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/psytrance/">psytrance</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', '60s');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/60s/">60s</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'soul');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/soul/">soul</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'minimal');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/minimal/">minimal</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'trance');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/trance/">trance</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'house');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/house/">house</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'funk');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/funk/">funk</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'techno');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/techno/">techno</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'rap');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/rap/">rap</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', '90s');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/90s/">90s</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'alternative');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/alternative/">alternative</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'pop');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/pop/">pop</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'rockabilly');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/rockabilly/">rockabilly</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'electronic');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/electronic/">electronic</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'latin');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/latin/">latin</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'bollywood');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/bollywood/">bollywood</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'disco');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/disco/">disco</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'new age');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/new age/">new age</a>&nbsp; <a onClick="ga('send', 'event', 'genreclick', 'cloud', 'dubstep');" style="margin: 4px;" class="btn btn-default text-capitalize btn-xs" href="/stations/dubstep/">dubstep</a>&nbsp; " & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="jumbotron">" & @CRLF & _ " <h2>Start your own station!</h2>" & @CRLF & _ " <p class="lead">Start broadcasting your own radio station with one of our premium radio servers.</p>" & @CRLF & _ " <div class="btn-group">" & @CRLF & _ " <a href="/servers/" class="btn btn-lg btn-danger">Learn More</a>" & @CRLF & _ " <a onClick="ga('send', 'event', 'bannerclick', 'sidebarstandard', 'Start your own station!');" class="btn btn-lg btn-success" href="https://www.internet-radio.com/servers/signup/" role="button"> Sign Up </a>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </div>" & @CRLF & _ "<div class="text-center">" & @CRLF & _ "<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>" & @CRLF & _ "<!-- Responsive Sidebar -->" & @CRLF & _ "<ins class="adsbygoogle"" & @CRLF & _ " style="display:block"" & @CRLF & _ " data-ad-client="ca-pub-3292199762079661"" & @CRLF & _ " data-ad-slot="2803180918"" & @CRLF & _ " data-ad-format="auto"></ins>" & @CRLF & _ "<script>" & @CRLF & _ "(adsbygoogle = window.adsbygoogle || []).push({});" & @CRLF & _ "</script>" & @CRLF & _ "</div>" & @CRLF & _ "<br>" & @CRLF & _ " <div class="panel panel-default">" & @CRLF & _ " <div class="panel-heading">" & @CRLF & _ " <h3 class="panel-title"><i class="mdi-communication-forum"></i> Internet Radio News Forum Threads</h3>" & @CRLF & _ " </div>" & @CRLF & _ " <ul class="list-group">" & @CRLF & _ " <li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/risabovs-new-singl-is-up.20784/">Risabov's new singl is Up!</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/top-20-radio-stations-august-2015.20659/">Top 20 Radio Stations - August 2015</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/centova-cast-updated-to-v3-2-2.20483/">Centova Cast updated to v3.2.2.</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/top-20-radio-stations-july-2015.20411/">Top 20 Radio Stations - July 2015</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/centova-cast-3-2-1-released.20200/">Centova Cast 3.2.1 Released.</a></li>" & @CRLF & _ "" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel panel-default">" & @CRLF & _ " <div class="panel-heading">" & @CRLF & _ " <h3 class="panel-title"><i class="mdi-communication-forum"></i> Radio Volunteering Forum Threads</h3>" & @CRLF & _ " </div>" & @CRLF & _ " <ul class="list-group">" & @CRLF & _ " <li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/always-possible-to-join.20793/">Always possible to join</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/skilled-edm-dj-looking-for-a-radio-station.20331/">Skilled EDM DJ looking for a radio station.</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/old-school-show-looking-for-a-new-home-pref-mon-9-12.20764/">Old school show looking for a new home! Pref Mon 9-12</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/chat-and-spin-radio.20772/">Chat And Spin Radio</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/press-release.20706/">PRESS RELEASE</a></li>" & @CRLF & _ "" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel panel-default">" & @CRLF & _ " <div class="panel-heading">" & @CRLF & _ " <h3 class="panel-title"><i class="mdi-communication-forum"></i> Radio Show Forum Threads</h3>" & @CRLF & _ " </div>" & @CRLF & _ " <ul class="list-group">" & @CRLF & _ " <li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/this-weekend-on-spiritplants-radio.1801/">This Weekend on SpiritPlants Radio</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/looking-for-news-and-current-affairs-syndication.20317/">Looking for news and current affairs syndication ...</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/jukeboxradio-needs-you.20736/">Jukeboxradio Needs You !!!!!</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/80s-club-classics-show.20735/">80s club classics show</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/looking-for-classic-rock-shows.20704/">Looking for Classic Rock Shows</a></li>" & @CRLF & _ "" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="panel panel-default">" & @CRLF & _ " <div class="panel-heading">" & @CRLF & _ " <h3 class="panel-title"><i class="mdi-communication-forum"></i> Music Forum Threads</h3>" & @CRLF & _ " </div>" & @CRLF & _ " <ul class="list-group">" & @CRLF & _ " <li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/risabovs-new-singl-is-up.20783/">Risabov's New singl is uP</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/bfractal-music-025-ende-karma-ep.20768/">[BFractal Music 025] Ende - Karma Ep</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/lunar-album-from-marcello-meconi.20761/">Lunar album from Marcello Meconi</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/myself-pendu-dialogue-promo-2-jaswinder-bhalla-upasana-singh-preet-harpal.20745/">MySelf Pendu - Dialogue Promo 2 -Jaswinder Bhalla - Upasana Singh - Preet Harpal</a></li>" & @CRLF & _ "<li class="list-group-item"><a href="https://www.internet-radio.com/community/threads/32-bore-baazdeep-latest-punjabi-song-2015.20725/">32 Bore - Baazdeep - Latest Punjabi Song 2015</a></li>" & @CRLF & _ "" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </div>" & @CRLF & _ "</div>" & @CRLF & _ "<div class="row">" & @CRLF & _ " <div class="col-md-12">" & @CRLF & _ " <div class="text-center">" & @CRLF & _ "<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>" & @CRLF & _ "<!-- Responsive Sidebar 2 -->" & @CRLF & _ "<ins class="adsbygoogle"" & @CRLF & _ " style="display:block"" & @CRLF & _ " data-ad-client="ca-pub-3292199762079661"" & @CRLF & _ " data-ad-slot="3556290110"" & @CRLF & _ " data-ad-format="auto"></ins>" & @CRLF & _ "<script>" & @CRLF & _ "(adsbygoogle = window.adsbygoogle || []).push({});" & @CRLF & _ "</script>" & @CRLF & _ "</div>" & @CRLF & _ "<br>" & @CRLF & _ "" & @CRLF & _ " </div>" & @CRLF & _ "</div>" & @CRLF & _ "" & @CRLF & _ " </div>" & @CRLF & _ " " & @CRLF & _ "" & @CRLF & _ " <footer class="footer">" & @CRLF & _ " <div class="container">" & @CRLF & _ " <div class="row">" & @CRLF & _ " <div class="col-md-3 col-sm-6">" & @CRLF & _ " <ul class="list-unstyled">" & @CRLF & _ " <li><h4><a href="/">Radio Station Directory</a></h4></li>" & @CRLF & _ " <li><a href="/add/">Add Your Station</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="col-md-3 col-sm-6">" & @CRLF & _ " <ul class="list-unstyled">" & @CRLF & _ " <li><h4><a href="/servers/">Radio Servers &amp; Hosting</a></h4></li>" & @CRLF & _ " <li><a href="/servers/shoutcast/">Shoutcast Servers</a></li>" & @CRLF & _ " <li><a href="/servers/icecast/">Icecast Servers</a></li>" & @CRLF & _ " <li><a href="/servers/prices/">Prices</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="col-md-3 col-sm-6">" & @CRLF & _ " <ul class="list-unstyled">" & @CRLF & _ " <li><h4><a href="/community/">Radio Support Forums</a></h4></li>" & @CRLF & _ " <li><a href="/community/forums/faq.9/">Frequent Questions</a></li>" & @CRLF & _ " <li><a href="/community/forums/guides.12/">Radio Guides</a></li>" & @CRLF & _ " <li><a href="/community/forums/support.2/">Support</a></li> " & @CRLF & _ " <li><a href="/contact/">Contact Us</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ " <div class="col-md-3 col-sm-6">" & @CRLF & _ " <ul class="list-unstyled">" & @CRLF & _ " <li><h4><a href="/servers/terms/">Terms &amp; Conditions</a></h4></li>" & @CRLF & _ " <li><a href="/privacy-policy/">Privacy Policy</a></li>" & @CRLF & _ " <li><a href="/privacy-policy/#cookies">Cookies</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ "" & @CRLF & _ " </div>" & @CRLF & _ " </footer>" & @CRLF & _ "" & @CRLF & _ " <!-- Order is important -->" & @CRLF & _ " <script src="https://maxcdn.bootstrapcdn.com/bootstr" Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYGLOBALFULLMATCH) Local $aFullArray[0] For $i = 0 To UBound($aArray) -1 _ArrayConcatenate($aFullArray, $aArray[$i]) Next $aArray = $aFullArray ; Present the entire match result _ArrayDisplay($aArray, "Result")

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm