// JavaScript Document
function AdsElement(){
	this.AdsLink=[];
	this.AdsMsg=[];
	this.AdsImagePath=[];
	this.AdsCount=null;
	this.Add=adsAdd;
	this.Show=adsShow;
}
function adsAdd(adLink,adMsg,adImage){
	this.AdsLink[this.AdsLink.length]=adLink;
	this.AdsMsg[this.AdsMsg.length]=adMsg;
	this.AdsImagePath[this.AdsImagePath.length]=adImage;
	this.AdsCount+=1;
}
function adsShow(){
	var rnd= Math.floor(Math.random() * this.AdsCount  );
	var s="";
	s+="<img src='"+this.AdsImagePath[rnd]+"' alt='"+this.AdsMsg[rnd]+"' ";
	s+="onMouseOver=\"this.style.cursor='Hand';\"";
	s+="onClick=\"window.location.href='"+this.AdsLink[rnd]+"';\">"
	document.write(s);
}

