// JavaScript Document

<!-- Begin
var how_many_ads = 6;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1) {
txt="Zippo & Bop";
url="http://www.mystical-county.org.uk";
alt="Zippo & Bop";
banner="http://www.mystical-county.org.uk/catimages/zb_1.jpg";
width="243";
height="256";
}
if (ad==2) {
txt="Zippo & Bop";
url="http://www.mystical-county.org.uk";
alt="Zippo & Bop";
banner="http://www.mystical-county.org.uk/catimages/zb_2.jpg";
width="243";
height="256";
}
if (ad==3) {
txt="Zippo & Bop";
url="http://www.mystical-county.org.uk";
alt="Zippo & Bop";
banner="http://www.mystical-county.org.uk/catimages/zb_3.jpg";
width="263";
height="256";
}
if (ad==4) {
txt="Zippo & Bop";
url="http://www.mystical-county.org.uk";
alt="Zippo & Bop";
banner="http://www.mystical-county.org.uk/catimages/zb_4.jpg";
width="263";
height="256";
}
if (ad==5) {
txt="Zippo & Bop";
url="http://www.mystical-county.org.uk";
alt="Zippo & Bop";
banner="http://www.mystical-county.org.uk/catimages/zb_5.jpg";
width="263";
height="256";
}
if (ad==6) {
txt="Zippo & Bop";
url="http://www.mystical-county.org.uk";
alt="Zippo & Bop";
banner="http://www.mystical-county.org.uk/catimages/zb_6.jpg";
width="263";
height="256";
}
document.write('<center>');
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('</a>');
document.write('</center>');
// End -->
