<!--
function printWindow(){
	bV = parseInt(navigator.appVersion)
	if (bV >= 4) {window.print()}
}
function oc(type,which) {
	if (document.getElementById(type + 'box' + which).style.display=="none") {
		document.getElementById(type + 'box' + which).style.display="block";
		//document.getElementById(type + 'icon' + which).src = "graphics/item-" + type + "_o.jpg";
		document.getElementById(type + 'icon' + which).alt = "Hide this";
	} else {
		document.getElementById(type + 'box' + which).style.display="none";
		//document.getElementById(type + 'icon' + which).src = "graphics/item-" + type + "_c.jpg";
		document.getElementById(type + 'icon' + which).alt = "View this";
	}
}
//-->