<!--
a = 3 // a=numbers of banners
var slump = Math.random();
var talet = Math.round(slump * (a-1))+1;
function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.alt = ''
        this.under = ''
}
b = new Array()
for(var i=1; i<=a; i++) { b[i] = new create() }

b[1].src    = "http://imgs.xinhuanet.com/ad/home/468-60.gif"
b[1].href   = "http://202.108.32.212/legend"
b[1].width  = "468"
b[1].height = "60"
b[1].border = "0"
b[1].alt    = "联想"
b[1].under  = '联想'
b[2].src    = "http://imgs.xinhuanet.com/ad/home/banner_cimf.gif"
b[2].href   = "http://www.cimf.com.cn/"
b[2].width  = "468"
b[2].height = "60"
b[2].border = "0"
b[2].alt    = "首届网络媒体会议"
b[2].under  = '首届网络媒体会议'
b[3].src    = "http://imgs.xinhuanet.com/ad/home/nova.gif"
b[3].href   = "http://www.nova.gov.cn/"
b[3].width  = "468"
b[3].height = "60"
b[3].border = "0"
b[3].alt    = "沈阳农村经济信息网"
b[3].under  = '沈阳农村经济信息网'
var visa = "";
visa += '<a href="'+b[talet].href+'" target="_blank">'
visa += '<img src="'+b[talet].src+'" height='+b[talet].height
visa += ' width='+b[talet].width+' border='+b[talet].border+' alt='+b[talet].alt+'>';
visa += '</a>'

function DisplayVisa()
{
	document.write(visa);
}

//-->