// JavaScript Document
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function hyper_wrap_display(objName, hors) {
	var cl_show = 'hyper_wrap_show';
	var cl_hide = 'hyper_wrap_hide';				
	if (obj = MM_findObj(objName)) {			
		if (hors) {												
			obj.className = (hors == 1) ? cl_show : cl_hide;			
		} else {			
			obj.className = (obj.className == cl_show || obj.className == '') ? cl_hide : cl_show; 
		}
		return true;			
	} else {
		return false;
	}	
}

function hyper_wrap_all_display (hors, strPrefix) {	
	for(i = 1; hyper_wrap_display(strPrefix + i, hors); i++) {
					
	}	
}