// JavaScript Document
function toggle_par(id) {
    if (document.getElementById(id).className == "boxout_show") {document.getElementById(id).className = "boxout_hide";}
    else {
		if (document.getElementById(id).className == "boxout_hide") {document.getElementById(id).className = "boxout_show";}
		}
}

function expandit() {
	var idh = location.hash;
	var id = idh.substring(1);
	if (id !="") {document.getElementById(id).className = "boxout_show";}
	}
