<!--

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.vspace = ''

        this.src = ''

        this.href = ''

        this.border = ''

        this.alt = ''

        this.under = ''

	this.isFlush= ''

	this.flushsrc= ''

}

b = new Array()



for(var i=1; i<=a; i++) 

{ 

b[i] = new create() 

}


b[1].src    = "http://imgs.xinhuanet.com/ad/tiange/banner_btvtg.gif"

b[1].href   = "http://www.xinhuanet.com/tiange/index.htm"

b[1].width  = "468"

b[1].height = "60"

b[1].vspace  =  "2"

b[1].border = "0"

b[1].alt    = "新华网  田歌访谈"

b[1].under  = '新华网  田歌访谈'




var visa = "";

if(b[talet].isFlush == "")

{

	visa += '<a href="'+b[talet].href+'" target="_blank">'

	visa += '<img src="'+b[talet].src+'" height='+b[talet].height

	visa += ' width='+b[talet].width+' vspace='+b[talet].vspace+' border='+b[talet].border+' alt='+b[talet].alt+'>';	

visa += '</a>'

}

else

	visa=b[talet].flushsrc;



function DisplayVisa()

{

	document.write(visa);

}

//-->