function showDetails(num) {
	theObj = document.getElementById('details' + num);
	if (theObj.style.display == "block" || theObj.style.display=="") {
		theObj.style.display = "none";	
		document.getElementById('toggle' + num).src = '/gateway/common/style/graphics/expandup.gif';
	}
	else {
		theObj.style.display = "block";
		document.getElementById('toggle' + num).src = '/gateway/common/style/graphics/expandDown.gif';
	}
}

function expandAll(DivNo) {
	for (var i=1; i<=DivNo; i++) {
		theObj =  document.getElementById('Details' + i);
		theObj.style.display = "block";	
	}
}