 var blnIE = navigator.userAgent.indexOf('MSIE') != -1;
 
 var intInterval_Resource = 0;

 var intContent_ID = 0;

 var elmPage_Section_Content_Scroller = null;
 var objPage_Section_Content = null;

 function Page_Section_Content_Show()
  {
   objPage_Section_Content = document.getElementById('objPage_Section_Content');

   if (blnIE)
    {
     if (document.getElementById('aTitle').innerHTML == '')
      {
       return false;
      }
    }
   else
    {
     if ((document.getElementById('aTitle').innerHTML.length > 36) == false)
      {
       return false;
      }
    }
   
   setTimeout('window.scroll(0, 999999)', 10);

   if (objPage_Section_Content.style.display == 'none')
    {
     objPage_Section_Content.style.display = 'block';
     objPage_Section_Title.style.borderBottom = '0px solid transparent';

     elmPage_Section_Content_Scroller =  document.getElementById('spanScroller');

     Page_Section_Content_Scroll(true);

     intInterval_Resource = window.setInterval('Page_Section_Content_Scroll()', 1);
    }
  }

 function Page_Section_Content_Scroll(blnReset)
  {
   if (blnReset == null)
    {
     elmPage_Section_Content_Scroller.style.height = elmPage_Section_Content_Scroller.offsetHeight - 6;
     elmPage_Section_Content_Scroller.style.top    = elmPage_Section_Content_Scroller.offsetTop + 6;

     if (elmPage_Section_Content_Scroller.offsetHeight < 16)
      {
       elmPage_Section_Content_Scroller.style.display = 'none';
       
       clearInterval(intInterval_Resource);
      }
    }
   else
    {
     elmPage_Section_Content_Scroller.style.height  = objPage_Section_Content.offsetHeight;
     elmPage_Section_Content_Scroller.style.width   = objPage_Section_Content.offsetWidth;
     elmPage_Section_Content_Scroller.style.display = 'block';
    }
  }

 function Content(intID, blnOver, strImage)
  {
   if (intContent_ID > 0)
    {
     var elmOverlay_Image = document.getElementById('imgOverlay_' + intContent_ID);
     
     elmOverlay_Image.src = strImage;
    }

   intContent_ID = intID;

   document.getElementById('tdDetail').innerHTML = '';

   if (blnOver)
    {
     document.getElementById('tdDetail').innerHTML += '<span class="content_title"><br />' +arystrContent_Title[intID] + '</span><br /><br />';
     document.getElementById('tdDetail').innerHTML += '<img src="./backoffice/module/backoffice/client/graphics/article/' + intID + '_.jpg" alt="" /><br /><br />';
     document.getElementById('tdDetail').innerHTML += '<span class="content_body">' + arystrContent_Value[intID] + '</span>';
    }
  }
