function toggle (id) {	e = $("l3_"+id);	if (e.style.display == 'none') {		e.style.display = 'block';	}	else if (e.style.display == 'block') {		e.style.display = 'none';	}}function expand (id) {	e = $("l3_"+id);	e.style.display = 'block';}function collapse (id) {	e = $("l3_"+id);	e.style.display = 'none';}function expandAll () {	expand (0);	expand (1);	expand (2);	expand (3);	expand (4);	expand (5);	expand (6);}function show (URL) {	e = $("m");	e.src = URL;}
