function hilite(imgid, imgurl) {
	var imgel = document.getElementById(imgid);
	imgel.src = imgurl;
	return;
}

