﻿// JScript File
<!-- Hide from old browsers
adImages = new Array("images/ads_gphone.gif","images/ads_internet_adsl.gif","images/ads_danhba.gif")
thisAd = 0
imgCt = adImages.length

function rotate() {
	if (document.images) {
		thisAd++
		if (thisAd == imgCt) {
			thisAd = 0
		}
		document.adBanner.src=adImages[thisAd]
		setTimeout("rotate()", 3 * 1000)
	}
}
