theLink = new Array()
theLink[0] = "http://sms.dayoo.com"
theLink[1] = "http://business.dayoo.com"

theSrc = new Array()
theSrc[0] = "http://www.dayoo.com/img1/smsbanner.gif"
theSrc[1] = "http://www.dayoo.com/img1/business468.gif"

LinksAmount=theLink.length
var rand1 = Math.floor(Math.random()*LinksAmount);
num = rand1 + 1
if (num > LinksAmount-1) {num =0}
link = rand1

function change ()
{
link = num
document.adimg.src=theSrc[link]
num++;
if (num > LinksAmount-1)
{num = 0}
setTimeout('change()',10000);
}

function gogo ()
{
window.open(theLink[link],'')
}

setTimeout('change()',10000);

document.write('<table width=100%><tr><td align=\"center\"');
document.write('<a href=# onClick=gogo()><img name=adimg src=' + theSrc[link] + ' alt="大洋广告" border="0"></a>');
document.write('</td></tr></table>');