var oSelTd=null;

//------------------------------------
//--FUNCIONES ASOCIADAS A LOS MENUES--
//------------------------------------
function ClickOpcionMnu(strUrl)
{
    document.location=strUrl;
}

//Funciones asociadas al Menu Izquierdo Principal
function MouseOverMI(objTd){
	document.getElementById(objTd).className = "tdBtnIzq1"; 
    document.getElementById(objTd).style.cursor = "pointer";
}
function MouseOutMI(objTd){
	document.getElementById(objTd).className = "tdBtnIzq0";  
}

//Funciones asociadas al Menu Horizontal Pie
function MouseOverMP(objTd){
	document.getElementById(objTd).className = "tdMnuPieOver"; 
    document.getElementById(objTd).style.cursor = "pointer";
}
function MouseOutMP(objTd){
	document.getElementById(objTd).className = "tdMnuPieNorm";  
}

//Funciones asociadas al Menu del Diccionario
function MouseOverMD(objTd){
	document.getElementById(objTd).className = "btnDicOver"; 
    document.getElementById(objTd).style.cursor = "pointer";
}
function MouseOutMD(objTd){
	document.getElementById(objTd).className = "btnDicNorm";  
}

