function processSection(sectionID)
{
   document.location.href="/Content/ViewSection/SectionDetails?sectionID="+sectionID+"&type=NRM";
}
function makeFontSmaller(idx)
{
    var fontSize=parseInt(document.getElementById('smallerFont').className);
    if(fontSize>11)
    {
        fontSize=fontSize-1;
        document.getElementById('smallerFont').className=fontSize;
        document.getElementById(idx).style.fontSize=fontSize+'px';
    }    
    return false;
}
function makeFontBigger(idx)
{
    var fontSize=parseInt(document.getElementById('smallerFont').className);
    if(fontSize<18)
    {
        fontSize=fontSize+1;
        document.getElementById('smallerFont').className=fontSize;
        document.getElementById(idx).style.fontSize=fontSize+'px';
    }
    return false;
}
function changeHeadLine(showItemID,totalItemCount)
{   
   var index=0;
   var containerID="";
   for(index=0;index<totalItemCount;index++)
   {
      containerID="divHeadLineContainer_"+index;    
      document.getElementById(containerID).style.display="none";
   }
   containerID="divHeadLineContainer_"+showItemID;    
   document.getElementById(containerID).style.display="";   
}


