function changeFontSize(titleFontSize, contentFontSize)
{
  //alert("Fonts received : " + titleFontSize + ", " + contentFontSize);
  //Get the Title element and set its new font size
  var contentTitleDIV = document.getElementById("inmaContentTitle");
  contentTitleDIV.style.fontSize = titleFontSize + "px";
  
  //Get the Content element and set its new font size
  var contentDIV = document.getElementById("inmaContent");
  contentDIV.style.fontSize = contentFontSize + "px";
  
  return;
}

function changeFontSizeOnHomePage(fontSize)
{
  //alert("Home Page Font Size  : " + fontSize);
  //Get the Title element and set its new font size
  var homePageContent = document.getElementById("homePageContent");
  homePageContent.style.fontSize = fontSize + "px";
  return;
}
