// JavaScript Document

	<!--
	function varyDisplay(ident,vStr) {

		var changeStr;
		var theObj;
		var dispStr;

		if (document.getElementById) {
			changeStr = "document.getElementById('" + ident + "')";	
			theObj = eval(changeStr);
			if (theObj) {
				theObj.style.display = vStr;
			}				
		} else if (document.all) {
			changeStr = "document.all['" + ident + "']";
			theObj = eval(changeStr);
			if (theObj) {
				theObj.style.display = vStr;
			}									
		} 
	}
	//-->
