function showCloseup(strId) {
	objRef = document.getElementById(strId);
	
	strStateCurr = objRef.style.visibility;
	if(strStateCurr == 'visible')
		objRef.style.visibility = 'hidden';
	else
		objRef.style.visibility = 'visible';
}