function CreateControl(DivID, IntContent)
{
  var d = document.getElementById(DivID);
  d.innerHTML = IntContent;
}
