	function displayAd(adName){
		if(isLoaded){
			theAd = eval(adName)
			theAd.show()
		}
	}
	
	function hideAd(adName){
		if(isLoaded){
			theAd = eval(adName);
			theAd.hide();
			theAd.mouseOn = false;
		}
	}	
	
	function initCheckMouse(adName){
		if(isLoaded){
			cmd = "checkMouse(\"" + adName + "\")";
			setTimeout(cmd,100)
		}
	}
	
	function checkMouse(adName){
		if(isLoaded){
			theAd = eval(adName);
			if(!theAd.mouseOn){
				theAd.hide();
			}
		}
	}
	
	function setMouseOn(adName){
		if(isLoaded){
			theAd = eval(adName);
			theAd.mouseOn = true;
		}
	}