
<!-- Random links su bandiera pace

///////////////////////////////////////////////////////////////////////////
// CONFIGURATION STARTS HERE
///////////////////////////////////////////////////////////////////////////

// Put your surprise-URLs into the Array below. 
// You may add as many URLs as you like.
// Separate each URL by comma.
var surpriseurl=new Array("http://www.telefonoazzurro.it", "http://www.peacelink.it", "www.bandieredipace.org/", "http://www.segnalidivita.com/pace/index.htm", "http://www.centrodirittiumani.unipd.it/", "http://www.savethechildren.it/", "http://www.peacereporter.net/default_canali.php?idc=3&template=11", "http://www.tavoladellapace.org/", "http://www.nonviolentpeaceforce.it/")

// text on the status bar when the mouse moves over the surprise-link
var textstatusbar="NO alla guerra! La guerra fa malissimo!"

///////////////////////////////////////////////////////////////////////////
// CONFIGURATION ENDS HERE
///////////////////////////////////////////////////////////////////////////

// do not change the code below

var urlinterval=200
var surpriseurllength=surpriseurl.length
var timer
var mouseisover=false

function openurl(thisurl) {
    var thisurlindex=Math.floor(surpriseurllength*Math.random())
    thisurl.href=surpriseurl[thisurlindex]  
}

function msover() {
    mouseisover=true
    showstatusbar()
}

function msout() {
    mouseisover=false
}

function showstatusbar() {
    if (mouseisover) {
        window.status=textstatusbar 
        timer=setTimeout("showstatusbar()",100)
    }
    else {clearTimeout(timer)}
}
// -->