﻿//show and hide divs
function ShowHideDIV(divID, showHide) { document.getElementById(divID).style.display = showHide; }
