function changeDisplay (id, tid) {
    var aListBlock = document.getElementById(id);
    var aTitleBlock = document.getElementById(tid);
	if (aListBlock){
		if(aListBlock.style.display == "block"){
			aListBlock.style.display = "none";
			aTitleBlock.src = 'images/ln_01.gif';
		} else if(aListBlock.style.display == "none"){
			aListBlock.style.display = "block";
			aTitleBlock.src = 'images/ln_01_o.gif';
		}
	}
}

function openBrWindow(theURL,winName,features) { //v2.0
  w = window.open(theURL,winName,features);
  w.focus();
}
function MM_openBrWindow(theURL,winName,features) { 
  w = window.open(theURL,winName,features);
  w.focus();
}
