/* Rollover Function */
	function swapImage(DOMname,newImage){
		var toSwapOut;
		var toSwapIn;
		toSwapOut = document.images[DOMname];
		toSwapIn = newImage;
		toSwapOut.src = toSwapIn;
		}
		
		
//This replaces the functionality of the individual calls in each onMouseOver and onFocus for the link status
//The status string is passed from the link to this function when it is called
	function textover(strStatus) {
		self.status = strStatus;
		return true;
	}
	

//This replaces the functionality of the individual calls in each onMouseOut and onBlur for the link status
//It sets the link status to be blank
	function textout() {
		window.status='';
		return true;
	}