<!-- 

function HideAllSpans( blnHide ) {
	var i;
	var strText;
	if (navigator.userAgent.indexOf("MSIE") > 0) {
		for (i = 0; i < document.all.length; i++) {
		
			if (document.all(i).tagName == "SPAN") {
				if (document.all(i).id.substring(0,3).toLowerCase() == "spn") {
				
					if (blnHide) 
						strText = "none";
					else
						strText = "block";
						
					document.getElementById(document.all(i).id).style.display = strText ;
				}			
			}
		}
	}
}


function ChangeSpan ( strSpanName, strNewStyle ) {
	var i;
	if (navigator.userAgent.indexOf("MSIE") > 0) {
		for (i = 0; i < document.all.length; i++) {
		
			if (document.all(i).tagName == "SPAN") {
				if (document.all(i).id == strSpanName) {
					document.getElementById(document.all(i).id).style.display = strNewStyle;
				}			
			}
		}
	}
}



		
function ChangeSpanStatus(spanObject) {

	//<span id="spnSpanName" style="Display: block "> 
	
	if (spanObject.style.display == 'none') {
		HideAllSpans(true);
		spanObject.style.display = 'block'
		} 
	else {
		spanObject.style.display = 'none'
		}
		
	}
	
	
//-->