var rand_no = Math.random();
document.write("
");
paint_widget();
function paint_widget() {
(function(){
var local_id = rand_no;
var widget = document.getElementById('wirenode_' + local_id + '_widget');
widget.innerHTML = "";
widget.style.position = "relative";
widget.style.overflow = "hidden";
widget.style.fontFamily = "sans-serif";
widget.style.width = "150px";
widget.style.height = "97px";
widget.style.margin = "0";
widget.style.padding = "0";
widget.style.color = "black";
widget.style.textAlign = "left";
widget.style.lineHeight = "100%";
widget.style.backgroundImage = "url(http://banner.wirenode.com/widgets/green/bg.gif)";
//screen 0
var screen0 = document.createElement('div');
screen0.style.left = "0";
screen0.style.top = "0";
screen0.style.position = "absolute";
screen0.style.width = "150px";
screen0.style.height = "97px";
widget.appendChild(screen0);
var text0 = document.createElement('div');
text0.style.position = "absolute";
text0.style.fontSize = "9px";
text0.style.left = "6px";
text0.style.top = "3px";
text0.style.width = "137px";
text0.style.height = "75px";
text0.style.margin = "0";
text0.style.padding = "0";
text0.style.fontWeight = "bold";
text0.innerHTML = "Read me
on your
phone at:";
screen0.appendChild(text0);
var image0 = document.createElement('img');
image0.src = "http://banner.wirenode.com/widgets/green/mobile.gif";
image0.style.position = "absolute";
image0.style.right = "0";
image0.style.top = "0";
image0.style.margin = "0";
image0.style.padding = "0";
image0.style.borderSize = "0";
image0.style.borderStyle = "none";
screen0.appendChild(image0);
var text20 = document.createElement('p');
text20.style.position = "absolute";
text20.style.fontSize = "12px";
text20.style.left = "10px";
text20.style.top = "47px";
text20.style.textAlign = "left";
text20.style.width = "150px";
text20.style.margin = "0";
text20.style.padding = "0";
text20.style.fontWeight = "bold";
text20.innerHTML = "http://metrodenuevayork
.wirenode.mobi";
screen0.appendChild(text20);
var link0 = document.createElement('a');
link0.innerHTML = "by wirenode.com";
link0.href = "http://www.wirenode.com";
link0.style.right = "0px";
link0.style.bottom = "0px";
link0.style.position = "absolute";
link0.style.fontSize = "10px";
link0.style.padding = "1px";
link0.style.paddingTop = "0px";
link0.style.color = "#0A6E9C";
link0.id = 'wirenode_' + rand_no + '_link';
widget.appendChild(link0);
})()
}