img1on = new Image();img1on.src = "/images/email-life-1.png";img1off = new Image();img1off.src = "/images/email-life-0.png";function imageActive(imageName){	document[imageName].src = eval(imageName + "on.src");	}function imageInactive(imageName){	document[imageName].src =  eval(imageName + "off.src");	}//-----------------------------function Rollover(theImageName, theImageID, theImageURL, theWidth, theHeight){	this.imageURL = theImageURL;	this.imageName = theImageName;	this.imageID = theImageID;	this.onImage = new Image();	this.onImage.src = theImageURL + "-1.png";		this.offImage = new Image();	this.offImage.src = theImageURL + "-0.png";		this.width = theWidth;	this.height = theHeight;	this.imageRLE = theImageURL + "-0.rle?text";}//-----------------------------Rollover.prototype.imageActive = function(){	theImage = document.getElementById(this.imageID);	theImage.src = eval(this.imageName + ".onImage.src");	//document[this.imageID].src = eval(this.imageName + ".onImage.src");}//-----------------------------Rollover.prototype.imageInactive = function(){	theImage = document.getElementById(this.imageID);	theImage.src = eval(this.imageName + ".offImage.src");//	document[this.imageID].src = eval(this.imageName + ".offImage.src");}//-----------------------------Rollover.prototype.write = function(){	document.write(		'<span class="address">' +			'<a href="' + this.imageURL + '-0.rle?text">' +				'<img src="' + this.offImage.src + '" ' +							'height="' + this.height + '" width="' + this.width + '" ' +							'style="vertical-align: middle;" ' +							'class="address-icon" ' +							'alt="email address" ' +							'title="email address" ' +							'onMouseOver = "' + this.imageName + '.imageActive();" ' +							'onMouseOut =  "' + this.imageName + '.imageInactive();" ' +							'id="' + this.imageID + '">' +				'</a>' +			'</span>'			);}