// JavaScript Document

var moreButton = "images/body_collapse-bar.jpg";
var closeButton = "images/body_retract-bar.jpg";

function divPop(targetID, targetImgID) {
	if (document.all && document.getElementById) {
		// Code for IE5
		target = document.all[targetID];
		targetImg = document.all[targetImgID];
	}
	else if (document.all) {
	// Code for IE4
		target = document.all[targetID];
		targetImg = document.all[targetImgID];
	}
	else if (document.getElementById) {
		// Code for proper W3C Compliant browser
		target = document.getElementById(targetID);
		targetImg = document.getElementById(targetImgID);
	}
	
	if(target.style.display == "none") {
		target.style.display = "block";
		targetImg.src = closeButton;
		
	} else if(target.style.display == "block") {
		target.style.display = "none";
		targetImg.src = moreButton;
	}
}
