var DEFAULT_RADIO = "19";
var DEFAULT_DIR = "http://www.donatofurlani.it/dradio/";


var wdiv = document.getElementById("dradio_id");

var contdiv = document.createElement("div");
//contdiv.style.width = "100%";
contdiv.style.margin = "0 0 5px 0";
contdiv.style.padding = "0";
wdiv.appendChild(contdiv);

var div1 = document.createElement("div");
div1.style.background = "url("+DEFAULT_DIR+"catlaptop.png) no-repeat 3px 3px #ffffff";
div1.style.padding = "3px 3px 3px 120px";
//div1.style.width = "100%";
div1.style.margin = "0";
div1.style.border = "1px solid #555555";
contdiv.appendChild(div1);


var p = document.createElement("p");
p.style.margin = "0";
p.style.padding = "0";
p.style.fontSize = "0.75em";
p.style.color = "#444444";
p.style.textAlign = "left";
var pt = document.createTextNode("You can listen to the Deezer Radio stations, while surfing on this website. If you click on the following link, a pop-up window containing the Flash radio player will open:");
p.appendChild(pt);
div1.appendChild(p);

var div2 = document.createElement("div");
div2.style.textAlign = "center";
div2.style.padding = "0";
div2.style.margin = "0";
div1.appendChild(div2);
 
var a = document.createElement("a");
a.style.fontSize = "0.85em";
a.style.fontWeight = "bold";
a.style.color = "#aa4444";
a.style.textAlign = "right";
a.href = "javascript: void window.open('" + DEFAULT_DIR + "dradio.html?radio=" + DEFAULT_RADIO + "','','width=200,height=300,location=no,status=no');";
a.title = "open radio player";
var at = document.createTextNode("open radio player");
a.appendChild(at);
div2.appendChild(a);

           