function openlist(element, imgid, childid) {
	
	document.getElementById(imgid).src = 'images/global/minus.gif';
	document.getElementById(element).href = "javascript:closelist('"+element+"', '"+imgid+"', '"+childid+"')";
	document.getElementById(childid).style.display = "block";
	
}

function closelist(element, imgid, childid) {
	
	document.getElementById(imgid).src = 'images/global/plus.gif';
	document.getElementById(element).href = "javascript:openlist('"+element+"', '"+imgid+"', '"+childid+"')";
	document.getElementById(childid).style.display = "none";
	
}

/* This will close all lists */
document.write('<style type="text/css">#blue_right ul ul { display: none; } </style>');
