		function hide(ids) {
				
			var a = ids.split(" ");
			
			for ( var i=a.length-1; i>=0; --i ){

				if (document.getElementById) { // DOM3 = IE5, NS6
					document.getElementById(a[i]).style.display = 'none';
				}
			}
		
		}
		
		function show(ids) {
				
			var a = ids.split(" ");
			
			for ( var i=a.length-1; i>=0; --i ){

				if (document.getElementById) { // DOM3 = IE5, NS6
					document.getElementById(a[i]).style.display = 'block';
				}
			}
		
		}