// Expand Box Javascript
//
// Javascript for expandanding and collapsing the expandBox 'mainContent_expand' segment

function toggleExpandBox(linkElementofBox){
	
	box2Toggle = document.getElementById("box_"+linkElementofBox);
	//currentBoxClass = box2Toggle.className;
	
	if(box2Toggle.className == "expandBox_closed"){ 
		box2Toggle.className = "expandBox_open";	
	}else{
		box2Toggle.className = "expandBox_closed";		
	}
	
	alert("currentBoxClass:" + currentBoxClass + " box2Toggle:" + box2Toggle);
	
	
}