var oSelTd=null;

//-------------------------------
//--FUNCIONES ASOCIADAS AL MENU--
//-------------------------------
function ClickOpcionMnu(strUrl)
{
    document.location=strUrl;
}
function MouseOverMI(imgId,loc){
	document.getElementById(imgId).src = loc; 
	document.getElementById(imgId).style.cursor = 'pointer';
}
function MouseOutMI(imgId,loc){
	document.getElementById(imgId).src = loc; 
	document.getElementById(imgId).style.cursor = 'default';
}

//Funciones asociadas al Menu de Pie 
function MouseOverPie(objTd){
	document.getElementById(objTd).className = "tdMnuOver"; 
    document.getElementById(objTd).style.cursor = "pointer";
}
function MouseOutPie(objTd){
	document.getElementById(objTd).className = "tdMnuNorm";  
}

//Funciones asociadas al Detalle de Clientes 
function MouseOverCli(objTd){
	document.getElementById(objTd).className = "tdTxtExpConBtnOver"; 
    document.getElementById(objTd).style.cursor = "pointer";
}
function MouseOutCli(objTd){
	document.getElementById(objTd).className = "tdTxtExpConBtnNorm";  
}

//---------------------------------------
//--Funciones Lista Expandir/Colapsar----
//---------------------------------------
function ClickExpandEC(objTd,tb,img,loc){
	PlaySound(3);
	if(document.getElementById(tb).style.display!="none"){
		objTd.style.cursor = "pointer";
		objTd.className="tdECLista";
		document.getElementById(img).src = loc + "listflenorm.jpg"; 
		document.getElementById(tb).style.display="none";
	}
	else{
		objTd.className="tdECListaSel";
		document.getElementById(img).src = loc + "listfleover.jpg"; 
		document.getElementById(tb).style.display="inline";
	}
}
function MouseOverEC(objTd,img,loc){
	if(objTd!=oSelTd) {
		objTd.className="tdECListaSel";
		objTd.style.cursor = "pointer";
		document.getElementById(img).src = loc + "listfleover.jpg"; 
	}
}
function MouseOutEC(objTd,tb,img,loc){
	if(document.getElementById(tb).style.display=="none") {
		objTd.className="tdECLista";
		document.getElementById(img).src = loc + "listflenorm.jpg"; 
	}
	
}
