<!--

function varyDisplay(ident,vStr1,vStr2) {

	var changeStr;
	var theObj;
	
	if (document.getElementById) {
		changeStr = "document.getElementById('" + ident + "')";	
		theObj = eval(changeStr);
		if (theObj) 
			{
			theObj.style.display = vStr1;
//			theObj.style.visibility  = vStr2;
			}				
	} else if (document.all) {
		changeStr = "document.all['" + ident + "']";
		theObj = eval(changeStr);
		if (theObj) 
			{
			theObj.style.display = vStr1;
//			theObj.style.visibility  = vStr2;
			}					
	} 
}

// -->
