	
  /***********************************************************************
   * function: getObject
   * purpose : Browser independent function to retrieve div object
   ***********************************************************************/
  function getObject(p_strId)
  {
   if(document.all)
      return document.all[p_strId];
   if(document.getElementById)
      return document.getElementById(p_strId);
   if(document.layers)
      return document.layers[p_strId];
  }
	
