

// Column Open/Close Buttons
function turnOffCol() {

  var column = document.getElementById("rtcol");
  column.style.display='none';

  identity3=document.getElementById("paper1");
  identity3.style.margin="3px 12px 12px 12px";

}

function turnOnCol() {

  var column = document.getElementById("rtcol");
  column.style.display='block';

  identity3=document.getElementById("paper1");
  identity3.style.margin="3px 240px 12px 12px";

}


// Print This Page Button
function printpage() {
  window.print();
}
