

var ie4 = false; 
if(document.all) { ie4 = true; }

function getObject(id) { 

	if (ie4) { return document.all[id]; } 
	else { return document.getElementById(id); } 
	}


function oc_header(divId, linkId) {
	
	var d = getObject(divId);
	var l = getObject(linkId);
	
	if(d.style.display == 'block') {
		
		d.style.display = 'none';
		l.style.fontWeight = 'bold';
		l.style.color = '#666666';
		//l.style.textDecoration = 'none';
		return;
		}
		
	if(d.style.display == 'none') {
	
		d.style.display = 'block';
		l.style.fontWeight = 'bold';
		l.style.color = '#FFC508';
		//l.style.textDecoration = 'underline';
		return;
		}
	
	}
