<!--
a = 1 // 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/banner_cimf.gif"
b[1].href   = "http://www.cimf.com.cn/"
b[1].width  = "468"
b[1].height = "60"
b[1].border = "0"
b[1].alt    = "2001中国网络媒体论坛"
b[1].under  = '2001中国网络媒体论坛'

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);
}

//-->