var isStarted;
var recMax=50;

function start(){
  // #<DI> : 1006 | <SVN> : v2.21.20| <INT> : PDB | <DATE> : 12/11/2007#'
  try {  
		p=getParent(window,0);
		if(p && p.start_int){
			if(!p.isStarted){
				p.isStarted=true;
				p.start_int();
			}
		}
	}
   catch(e){/*alert("exception: timerdeco, " + e.Information)*/}	
}

function getParent(item,rec){
	if(recMax<rec) return null;
	if(!item) return null;
	if(item.opener){
		if(item.opener.closed) return null;
		return getParent(item.opener,rec+1);
	}
	return item.top;
}


