var firstDiv = 'blank';

var previousID = firstDiv;
function showHide(showID) {
   document.getElementById(previousID).style.display = 'none';
   document.getElementById(showID).style.display = '';
   previousID = showID;
}
