var strLastDiv="";
var strLastDivChild="";
var intTemp=0;
var intLimitTime=10;
var onDiv=false;

function avanzarTime(){
	intTemp++;
	if(intTemp==intLimitTime && onDiv==true){
		onDiv==false;
		removeDiv();
	}
}
function changeContent(idTd,idDiv){
	intTemp=0;
	onDiv=true;
	$(idDiv).style.left=(148 + MyRGGetPosition(idTd,"Left")) + "px";
	$(idDiv).style.top=(MyRGGetPosition(idTd,"Top")-1) + "px";
	$(idDiv).style.display="block";
	removeDiv();
	strLastDiv=idDiv;	
}//:FNT
function removeDiv(){
	if(strLastDiv!=""){	
		$(strLastDiv).style.display="none";
	}
}//:FNT
function removeDivChild(){
	if(strLastDivChild!=""){
		if($(strLastDivChild).style.display=="none"){
			$(strLastDivChild).style.display="block";
		}else{
			$(strLastDivChild).style.display="none";	
		}
	}
}//:FNT
function showContent(idDiv){
	intTemp=0;
	$(idDiv).style.display="block";
	removeDivChild();
	strLastDivChild=idDiv;
}//:FNT
function showThirdlevel(idDiv){
	intTemp=0;
	$(idDiv).style.display="block";
}//:FNT