function initMouseOvers() {
	var imgs = document.images, osrc
	for (var i = 0; i < imgs.length; i++) {
		osrc = imgs[i].getAttribute("osrc")
		if (osrc != "" && osrc != null) {
			imgs[i].oimg = new Image()
			imgs[i].img  = new Image()
			imgs[i].oimg.src = osrc
			imgs[i].img.src  = imgs[i].src
			imgs[i].onmouseover = swapOn
			imgs[i].onmouseout = swapOff
		}
	}
}

function swapOn() {
	this.src = this.oimg.src
}

function swapOff() {
	this.src = this.img.src
}

function openWindow(theName) { 
	// BOB is the NAME of the window we are opening. 
	msgWindow=open(theName,'BOB','width=350,height=400,menubar=no,resizable=yes,scrollbars=yes,toolbars=no'); 
} 