

function smallFontSize() {
        
    try
{
d('contentCol').className = 'small';
}
catch(err)
{
 d('contentColWide').className = 'small';
}

    
    
            
   
    
}


function normalFontSize() {

    
       try
{
 d('contentCol').className = 'normal';
}
catch(err)
{
  d('contentColWide').className = 'normal';
}
   
   
  
}

function largeFontSize() {

 
 
        try
{
 d('contentCol').className = 'large';
}
catch(err)
{
  d('contentColWide').className = 'large';
}
   
    
    
}

function getClassName() {


        try
{
 return d('contentCol').className;
}
catch(err)
{
  return d('contentColWide').className;
}

    
    
  
  
}

function d(id) {
  return document.getElementById(id);
}

