
<!--

ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

// Show/Hide functions for non-pointer layer/objects
function show(id) {
	document.getElementById(id).style.visibility = "visible"
}

function hide(id) {
	 //document.id.style.visibility = "hidden"
	document.getElementById(id).style.visibility = "hidden"
}

//-->
