// JavaScript Document
//changeContent('LAYER_ID','NEW_CONTENT')

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;
   }
}