
function wide(url,target){

	handle = window.open(url,target,'width=660,height=620,scrollbars');
	handle.focus();

}

function narrow(url,target){

	handle = window.open(url,target,'width=313,height=600,scrollbars');
	handle.focus();

}

var toutImage = new Image();
toutImage.src = "images/atb_salesburst.gif";

var tout = new Array();
tout.push({alt:'Save 20%', src:'/products/afterthebell/pdfs/AfterTheBell_Sale_OrderForm_PFX.pdf'})
tout.push({alt:'Eligible for Title 1 Funding', src:'/products/afterthebell/funding.htm'});


var started = false;
var delay = 2500;
var index = 0;

function cycle() {
	document.images["Rotatingtout"].alt = tout[index].alt;
	document.getElementById("burst_link").href = tout[index].src;
	index++;
	if ( index == tout.length ) {
		index = 0;
		resetTout();
	}
	setTimeout("cycle()",delay);
}

function resetTout() {
	document.images["Rotatingtout"].src = toutImage.src;
	document.images["Rotatingtout"].alt = tout[tout.length - 1].alt;
	document.getElementById("burst_link").href = tout[tout.length - 1].src;
}

function startTout() {
	if (!started) {
		started = true;
		resetTout();
		setTimeout("cycle()",delay);
	}
}
