function toggleClamShellMenu(objectID) {
	if (isAll || isID) {
		domStyle = findDOM(objectID,1);
		if (domStyle.display =='block' || domStyle.display =='inline')  domStyle.display='none';
		else domStyle.display='block';
	}
	else {
		destination = objectID + '.html';
		self.location = destination;
	}
	return;
}

function toggleShow(objectID, show) {
	if (isAll || isID) {
		domStyle = findDOM(objectID,1);
		if (show == '1') {
			domStyle.display='block';
		} else {
			domStyle.display='none';
		}
	}
	return;
}
