function replaceImage(strImgID, strImageURL) {
	var objImg = document.getElementById(strImgID);
	
	if (objImg) {
		objImg.src = strImageURL;
	}
}