function show(blockID) {
	styleObj = document.getElementById(blockID).style;
	if (styleObj.display=='none') {
		styleObj.display = '';
	}
	else {
		styleObj.display = 'none';
	}
} 