<!--
// requires default.js

function setVis2(which,theVis) {
	if (isIE4==true){
		obj = eval('document.all.'+which);
		obj.visibility = theVis;
	} else if(isIE5==true){
		obj = eval('document.all.'+which);
		obj.style.visibility = theVis;
   	} else if (isNS6==true && false){
        	obj = document.getElementById(which);
        	obj.style.visibility = theVis;
   	}
}

//-->