<!--
var how_many_ads = 2;  // Number of ads
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1) {
url="/product/auto/index.jsp";
alt="机动车辆险网上投保";
banner="/banner/bannercar.gif";
width="468";
height="60";
}

if (ad==2) {
url="/product/auto/index_01.shtml";
alt="机动车辆险网上投保";
banner="/banner/bannerjoy.gif";
width="468";
height="60";
}


if (url=="")
{
document.write('<right>');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('</right>');
}
else
{
document.write('<right>');
document.write('<a href=\"' + url + '\" target=\"_blank\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('</right>');
}
// -->