// JavaScript Document

function replaceHtml(boxId, replaceWith) {
   document.getElementById(boxId).innerHTML = "";
   document.getElementById(boxId).innerHTML = replaceWith;
	return true;
}
