// Do NOT change any code here.  
// Any changes should be made in adinfo.js

function fnChangeAd(){
	if (blnRotate==blnTrue){  
			intAdIndex++;
			if (intAdIndex>intNumberOfAds-1){
				intAdIndex=0;
			}
		document.ad.src=arrImg[intAdIndex].src;
		strTimeOutID = setTimeout("fnChangeAd()",(intNumberOfSecondsToPause * 1000));
	}
}

function fnAdClicked(){
	blnRotate = blnFalse;
//	location.href=strURL[intAdIndex];
}

function fnMouseOverAd(){
	blnRotate = blnFalse;
	window.status=strURL[intAdIndex];
	clearTimeout(strTimeOutID);
}

function fnMouseOffAd(){
	blnRotate = blnTrue;
	window.status="";
	fnChangeAd();

}

