You simply need to repeat the line:
Code:
document.getElementById("id_of_your_div").style.display = "block";
as many times as you need. So for example you might end up with:
Code:
<script type='text/javascript'>
window.onload = function() {
document.getElementById("id_of_your_div1").style.display = "block";
document.getElementById("id_of_your_div2").style.display = "block";
document.getElementById("id_of_your_div3").style.display = "block";
document.getElementById("id_of_your_div4").style.display = "block";
}
</script>
Bookmarks