<!-- //

	if (!window.previousAdsOnPage) { var previousAdsOnPage= new Array() ; }
	
	function outputMultipleAds(adToUse, adsStruct, e) {
		
		// adToUse 		Array of ads to output
		// adsStruct	Where to get the ads from
		// e			Whether the ad should be evaluated
		
		for (i=0; i < adsToUse.length; i++)  {
			
			var adName=adsToUse[i];
			var thisAd=adsStruct[adName];
			
			if (thisAd != undefined) {
				e = (thisAd.charAt(0) == "\'") ?  true  : false ;
				thisAd = (e) ? eval(adsStruct[adName]) : adsStruct[adName] ;
				document.write(thisAd) ;
				previousAdsOnPage.push(adName);
			}
		}
	}

// -->
