// GENERAL.JS for Mole 2004

d=document;

function doMouseOver(imageId, imgSrc) {
	if ((imageId != "") && (imgSrc != "")) {
        var x=document.getElementById(imageId);
        x.src="images/"+imgSrc;
	}
}

