function changeContent(id,shtml)
{
  if (document.getElementById || document.all) {
    var el = document.getElementById? document.getElementById(id): document.all[id];
    if (el && typeof el.innerHTML != "undefined") el.innerHTML = shtml;
  }
}

//function showHomePopup(id)
//{
//  e = document.getElementById(id);
//  if (e != null) e.popup.show();
//}
//

