// JavaScript Document

var ajax;
	function myResult() {
		ajax =  new Ajax.Updater('topBanner', '/getTopBannerAd.cfm', { method:'get' });
		//if (value != "true") {
			window.setTimeout("myResult()", 80000);
		//}
	}
	window.setTimeout("myResult()", 1);

	function myOtherResult() {
		ajax =  new Ajax.Updater('sideBanner', '/getSideBannerAd.cfm', { method:'get' });
		//if (value != "true") {
			window.setTimeout("myOtherResult()", 80000);
		//}
	}
	window.setTimeout("myOtherResult()", 1);
