// !!! Reload page
// add 1,2,3 'img'
var NumberOfAds = 6;
var now = new Date()
var sec = now.getSeconds()
var AdNumber = sec % NumberOfAds;
AdNumber +=1;

if (AdNumber==1)
{
 url="http://www.guildwoodvillage.com/g/george/";
 Graphic="images2/george.jpg";
 width = "150"
 height = "106"
}

if (AdNumber==2)
{
 url="http://www.guildwoodvillage.com/p/paws";
 Graphic="images2/paws.jpg";
 width = "150"
 height = "106"
}


if (AdNumber==3)
{
 url="http://www.guildwoodvillage.com/g/GW";
 Graphic="images2/gwen.jpg";
 width = "150"
 height = "106"
}

if (AdNumber==4)
{
 url="http://www.harvestcall.ca/";
 Graphic="images2/shvc2.jpg";
 width = "150"
 height = "106"
}

if (AdNumber==5)
{
 url="http://www.guildwoodvillage.com/a/als";
 Graphic="images2/als.jpg";
 width = "150"
 height = "106"
}

if (AdNumber==6)
{
 url="http://maryworona.com/";
 Graphic="images2/Worona.jpg";
 width = "150"
 height = "106"
}


document.write('<center>');
document.write('<a href=\"' + url + '\" target=_blank>');
document.write('<img src=\"' + Graphic + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('border=0>');
document.write('</a>');
document.write('</center>');

