<!--
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://ad.zol.com.cn/images_ad/amasun.gif"
b[1].href   = "#"
b[1].width  = "460"
b[1].height = "80"
b[1].border = "0"
b[1].alt    = ""
b[1].under  = ''

var visa2 = "";
visa2 += '<a href="'+b[talet].href+'" target="_blank">'
visa2 += '<img src="'+b[talet].src+'" height='+b[talet].height
visa2 += ' width='+b[talet].width+' border='+b[talet].border+' alt='+b[talet].alt+'>';
visa2 += '</a>'

function DisplayVisa2()
{
	document.write(visa2);
}

//-->