<!--
var NumberOfAds = 5;
var now = new Date();
var sec = now.getSeconds();
var AdNumber = sec % NumberOfAds;
AdNumber +=1;

if (AdNumber==1)
{
     url="#";
     Graphic="http://www.be-wireless.com/images/rotate1.jpg";
     width = "251";
     height = "275";
}

if (AdNumber==2)
{
     url="#";
     Graphic="http://www.be-wireless.com/images/rotate2.jpg";
     width = "251";
     height = "275";
}

if (AdNumber==3)
{
     url="#";
     Graphic="http://www.be-wireless.com/images/rotate3.jpg";
     width = "251";
     height = "275";
}

if (AdNumber==4)
{
     url="#";
     Graphic="http://www.be-wireless.com/images/rotate4.jpg";
     width = "251";
     height = "275";
}

if (AdNumber==5)
{
     url="#";
     Graphic="http://www.be-wireless.com/images/rotate5.jpg";
     width = "251";
     height = "275";
}

document.write('<img src=\"' + Graphic + '\" width=');
document.write(width + ' height=' + height + ' ');
document.write('border=0>');
// -->

