// JavaScript Document

function showHideIndicatorView() {
  var i,p,v,obj,args=showHideIndicatorView.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='display')?'block':(v=='hide')?'none':(v=='inline')?'inline':v; }
    obj.display=v; }
}

function showHideIndicator(total,show){
	gl=document.getElementById('glink'+show).style;
	dl=document.getElementById('dlink'+show).style;
	for (i=1; i<=total; i++)  {
		if ((obj=MM_findObj('indicator'+i))!=null) { 
		if (i==show) {v='display';} else { v='hide';}
		if (obj.style) {obj=obj.style; v=(v=='display')?'block':(v=='hide')?'none':v;}
		obj.display=v; 
		gl.display='none';//hide graph link for graph that is displayed
		dl.display='inline';//show the data link 
    }
  }
}
function hide(id){
	el=document.getElementById(id).style;
	el.display='none';
}