// roating, linked banner images
adImages = new Array("promos/images/TGSafety.jpg","loveyourbundle/tg_lyb.gif")
adURL = new Array("javascript:newWindowCybersitter('http://www.fairpoint.com/safety');","javascript:newWindowCybersitter('loveyourbundle/index.html');")
thisAd = 0
imgCt = adImages.length
function rotate() {
	if (document.images) {
		if (document.adBanner.complete){
		thisAd++
			if (thisAd == imgCt) {
			thisAd = 0 }
		document.adBanner.src=adImages[thisAd] }
	setTimeout("rotate()",3 * 3000) }
}

function newLocation(){
document.location.href = adURL[thisAd]
}

// roating, linked weather images
weatherImages = new Array("http://wxport.accuweather.com/wxpost/graphic.aspx?zipcode=32457&type=32&partner=wwwlink","http://wxport.accuweather.com/wxpost/graphic.aspx?zipcode=32301&type=32&partner=wwwlink","http://wxport.accuweather.com/wxpost/graphic.aspx?zipcode=32401&type=32&partner=wwwlink")
weatherURL = new Array("javascript:newWindowWeather('http://wwwa.accuweather.com/forecast.asp?zipcode=32457&partner=wwwlink');","javascript:newWindowWeather('http://wwwa.accuweather.com/forecast.asp?zipcode=32301&partner=wwwlink');","javascript:newWindowWeather('http://wwwa.accuweather.com/forecast.asp?zipcode=32401&partner=wwwlink');")
thisWeather = 0
imgCount = weatherImages.length
function rotateWeather() {
	if (document.images) {
		if (document.weatherBanner.complete){
		thisWeather++
			if (thisWeather == imgCount) {
			thisWeather = 0 }
		document.weatherBanner.src=weatherImages[thisWeather] }
	setTimeout("rotateWeather()",2000) }
}

function newWeather(){
document.location.href = weatherURL[thisWeather]
}

// open new windows
function newWindowDialup(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=581,height=600");
}

// open new windows
function newWindowDSL(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=600,height=390");
}

function newWindowNL(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=auto,resizable=no,width=585,height=642");
}

// open new windows
function newWindowDirecTV(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=593,height=475");
}

function newWindowCybersitter(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=1025,height=850"); }

// open new windows
function newWindowWeather(page) {
OpenWin = this.open(page, "WeatherWindow", "");
}

// Change image randomly onload
function ShowImg() {
var number = 2;
var increment = Math.floor(Math.random() * number);
if (increment == 0) { document.getElementById("adBanner").style.backgroundImage = "url('promos/images/no_limits_banner.jpg')";
	document.getElementById("adBannerLink").document.location.href = "promos/our_gift_to_you.html"; }
if (increment == 1) { document.getElementById("adBanner").style.backgroundImage = "url('promos/images/our_gift_banner.jpg')"; }
}