function ListClick(objid) {
	var obj = document.getElementById(objid)
	
	if (obj.style.display == '') {
		obj.style.display = 'none';
	}
	else {
		obj.style.display = '';
	}
}

function LinkSelect(adrs) {
//	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) location.href = adrs;
}
