function runPopUp(which){
	var thePopUpDiv = document.getElementById(which);
	
	if(thePopUpDiv.style.display != 'block'){
		thePopUpDiv.style.display = 'block';
	} else {
		thePopUpDiv.style.display = 'none';
	}
}