// JavaScript Document



function shareReveal()
{
  var oDiv = document.getElementById('subscribeBlockID');
  oDiv.style.display = 'block'; // size you want body to increase to
}

function shareHide()
{
  var oDiv = document.getElementById('subscribeBlockID');
  oDiv.style.display = 'none'; // size you want body to increase to
}






function shareLowReveal()
{
  var oDiv = document.getElementById('subscribeBlockLowID');
  oDiv.style.display = 'block'; // size you want body to increase to
}

function shareLowHide()
{
  var oDiv = document.getElementById('subscribeBlockLowID');
  oDiv.style.display = 'none'; // size you want body to increase to
}





function blogReveal()
{
  var oDiv = document.getElementById('blogBlockID');
  oDiv.style.display = 'block'; // size you want body to increase to
}

function blogHide()
{
  var oDiv = document.getElementById('blogBlockID');
  oDiv.style.display = 'none'; // size you want body to increase to
}






function newsCurReveal()
{
  var oDiv = document.getElementById('newsCurBlockID');
  oDiv.style.display = 'block'; // size you want body to increase to
}

function newsCurHide()
{
  var oDiv = document.getElementById('newsCurBlockID');
  oDiv.style.display = 'none'; // size you want body to increase to
}

