content(s)


  
  function ContainerContents(content,id)
  {
          try
          {
                  if (content.readyState == 4)
                  {
                          if(content.status == 200) { document.getElementById(id).innerHTML=content.responseText; }
                          else { alert('\n\nThere was a problem with the request.\n\nStatus code: '+content.status+'\n'+content.statusText); }
                  }
          }
          catch(error) { alert('Error: '+error.name+' -- '+error.message); }
  } // function ContainerContents()
  </script>
  </head>