document.write('<link href="/scripts/focus_js.css" rel="stylesheet" type="text/css" \/>');
/*
by Leo Charre & Jesse Fergusson
Internet Connection  2004 2005 ©
www.internetconnection.net

Pete's notes
found at http://support.internetconnection.net/CODE_LIBRARY/Javascript_Collapse_Expand.shtml
and adapted for use
*/

function shoh(id) { 
	
	if (document.getElementById) { // DOM3 = IE5, NS6
		if (document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display = 'block';
		} else {
			document.getElementById(id).style.display = 'none';			
		}	
	} else { 
		if (document.layers) {	
			if (document.id.display == "none"){
				document.id.display = 'block';
			} else {
				document.id.display = 'none';
			}
		} else {
			if (document.all.id.style.visibility == "none"){
				document.all.id.style.display = 'block';
			} else {
				document.all.id.style.display = 'none';
			}
		}
	}
}