function sh (id) { whichpost = document.getElementById(id); if (whichpost.className=="show") { whichpost.className="hide"; } else { if (whichpost.className=="hide") { whichpost.className="show"; } } }