function gotoLabel(target,CLabel,TLabel) {
	if ( window.document[target][1] && getLabel(target)==CLabel ) { 
		  window.document[target][1].TGotoLabel('_root',TLabel);
  } 
	else if ( window.document[target] && getLabel(target)==CLabel ) {  
	    window.document[target].TGotoLabel('_root',TLabel); 
	}
}
function getLabel(target) {
	if ( window.document[target][1] ) { 
	  return window.document[target][1].TCurrentLabel('_root'); 
	} 
	else { 
	  return window.document[target].TCurrentLabel('_root'); 
	}
}