var banners = new Array(
	'images/soul-spirit-banner.gif',
	'images/xmas-banner.gif');
var linx = new Array(
	'https://secure3.subscribeonline.co.uk/esubscriber/offers.sol?mag=ACESAS',
	'https://secure3.subscribeonline.co.uk/esubscriber/category_xmas07.sol');
var old = 0;
var current = 0;

function init()
{
	if (!document.images) return
	while (current == old)
	{
		current = Math.floor(Math.random()*banners.length);
	}
	old = current;
	document.images['banner'].src = banners[current];
	setTimeout('init()',6000);
}

function sendPage()
{
	var newwin = window.open(linx[current],'_blank','');
}