function showOfficeMap(elementId, className) {
	targ=document.getElementById(elementId);
	if (!targ.style.display || targ.style.display == 'none')	targ.style.display='block';	else	targ.style.display='none';
}

